Custom column with data from other column
Custom column with data from other column
Hello,
I want to do table with editable rows, so I need to have button [EDIT] in last column...
I did
[code]
"aoColumns": [null, null, null, null, null, null, null, null, null, null, null, null,
{ "bSortable": false,
"fnRender": function(oObj) {
return 'Edit'}
}
[/code]
and I would like to know how to get that X (id) from other column...
I want to do table with editable rows, so I need to have button [EDIT] in last column...
I did
[code]
"aoColumns": [null, null, null, null, null, null, null, null, null, null, null, null,
{ "bSortable": false,
"fnRender": function(oObj) {
return 'Edit'}
}
[/code]
and I would like to know how to get that X (id) from other column...
This discussion has been closed.
Replies
I'm really new to this javascript thing.
Allan