Changing cell in DataTables doesn't work

xpl0siv

New Member
I've been working with DataTables Framework with some projects. The actual project require a table with inline edit. I know that there is plugin called "editor" however it isn't free, so I decided to use the another alternative makeEditable.I've got the following settings for the oTable:\[code\]$('#example').dataTable().makeEditable({ sUpdateURL: "./update", sDeleteURL: "./delete", sAddURL: "./webservice", // ...}\[/code\]However when I edit the cell the value doesn't change, but in the database it has changed and I can see the changes only when I refresh the page. I tried to use \[code\]fnOnCellUpdated\[/code\] function however I think it isn't called and Im not able to refresh the table with \[code\]fnReloadAjax\[/code\]I you required more details about the javascript code tell me.
 
Back
Top