Multi select Check Box Column in datatable with array source

Multi select Check Box Column in datatable with array source

inguva_vamsiinguva_vamsi Posts: 8Questions: 3Answers: 0

Dear all,

I am using the following code to display datatable which is working fine. Now i want multi select check box column in grid. Could you please help.

function table() { 
$('#customdatatable').DataTable( {
   
        data: arrData, \\ data coming in this array of my javascript
    

        columns: [
           { title: "fcs_subscriptionid" } , \\ primary key id
 { title: "SKU" },  
   { title: "FCS Category" },
      { title: "FCS Product Name" },
         { title: "Charge Plan Type" },
            { title: "Product Rate Plan:ID" },
               { title: "Option Code" },
               { title: "Zuora Rate ID Name" },
                  { title: "Charge" },
                  { title: "Charge Model /UOM" },
         
        ]
    } );
    
    
    
    
}

I am confused between columndefs and columns in datatable declarations

Could you please help

Answers

This discussion has been closed.