i think it's bug
i think it's bug
Hey. I try to use server side processing. And i use array of objects as the data source . So when i call
fnAddData i don't fet anything as return parameter. But if i use server side processing + array of arrays as a returned data, everuthing is ok!
what is the problem ?
fnAddData i don't fet anything as return parameter. But if i use server side processing + array of arrays as a returned data, everuthing is ok!
what is the problem ?
This discussion has been closed.
Replies
Allan
i need the next, i get array of objects from the server, and do next:
[code]
oTable.fnClearTable();
var aiData = oTable.fnAddData(json.aaData);
[/code]
and after i need to make a specific cells editable. So i thought that i can get row which was added and make somethink like
[code]
specificCell.editable(editNumberFunction,
{
indicator: 'Changing value...',
tooltip: 'Double-click to edit value...',
event: 'dblclick',
height: "14px"
});
[/code]
how can i do it ?
[code]
j('td.editableNumberValue', oTable.fnGetNodes()).editable(editNumberFunction,
{
indicator: 'Changing value...',
tooltip: 'Double-click to edit value...',
event: 'dblclick',
height: "14px"
});
[/code]
in the fnRowCallback !
when i use oTable.fnAddData(json.aaData); the search doesn't work by this new rows!
how can i add this new rows to the search ?
Allan