Inline editing : freeze columns : only edit partial set of columns
Inline editing : freeze columns : only edit partial set of columns
sumitb555
Posts: 2Questions: 2Answers: 0
I plan to datatables with inline editor. The table has 3 initial columns frozen (freeze columns), the inline editor should not apply to these columns.
Rest of the coulmns where the cell edit should apply should have type ahead, and once text is entered these should be converted to a Hyperlink.
I am currently trying intialize the table with the following:
editor = new $.fn.dataTable.Editor({
table:"#AffItemTab"
});
which does not seem to be correct? I do not use Ajax for the table data.
This discussion has been closed.
Answers
You need to use the
fields
array to tell Editor information about the data you want to edit (i.e. the fields in the form).Allan