Conflict jeditable and fixed columns

Conflict jeditable and fixed columns

onkaronkar Posts: 3Questions: 0Answers: 0
edited August 2011 in DataTables 1.8
I am using fixed columns and i have kept 2 columns of my table (from left side) as fixed. I also want the cells to be editable and i need different editors for different cols (textarea/dropdown/date picker). i have acheived this by specifying the "aoColumns" settinsgs in inside the makeeditable funciton. liek " "aoColumns": [
null,
{
indicator: 'Saving platforms...',
tooltip: 'Click to edit platforms',
type: 'textarea',
submit: 'Save changes'

},{
type: 'select',
onblur: 'submit',
data: "{'Shoes':'Shoes','Socks':'Socks'}"
}]

The problem i face is that when i use fixed columns + jeditable the order of aoColumns mentioned in the makeeditable func doee not match.
meaning that the fixed column are now not considered as part of the main data table.
for ex - if i have 3 column in my datatable then using only makeeditable i can edit col 2 with texxtarea editor and col 3 with drop down box.
but when fixed columns is turned on and first 2 cols from left are fixed the counting of data table cols starts with col 3 which gets applied with the null editor.

is there a way to make fixed as well as movable columns editable ?
This discussion has been closed.