Specifying the RowID when loading data from the DOM
Specifying the RowID when loading data from the DOM
johnd28714
Posts: 3Questions: 0Answers: 0
Hi All,
I'm using DataTables and the Editor and am loading data from the DOM instead of serverside. I'm having a problem with specifying the ids for the records used in the editor. I understand that in a server based scenario I can specify a DT_RowId field but how can I specify which field in my DOM data is the Row Id ?
Thanks,
John
I'm using DataTables and the Editor and am loading data from the DOM instead of serverside. I'm having a problem with specifying the ids for the records used in the editor. I understand that in a server based scenario I can specify a DT_RowId field but how can I specify which field in my DOM data is the Row Id ?
Thanks,
John
This discussion has been closed.
Replies
Allan
[code]
while ( $row=$res->fetch() ) {
echo <<
Thanks so much for your quick response!
John