Multiple DataTables Selecting
Multiple DataTables Selecting
omurlts
Posts: 35Questions: 6Answers: 0
in DataTables
Hello
Im want first install selecting item and selecting change two table changed data
Im using server side option
Do you have tips or examples
This discussion has been closed.
Answers
If you're talking about a one-to-many relationship then either Parent / child editing with Editor or Parent / child editing in child rows should be perfect for you.
yes im need this Parent / child editing with Editor
but first install have selected (picture same)
ty for helping.
@omurlts - Are you happy that this is answered now, or is there a follow on question?
Thanks,
Allan
Hello Alan im happy but just need on first load how selected last item ?
Use the
row().select()
method - e.g. in your DataTable initialisation:Allan
Ty very much Allan
initComplete: function (settings) {
var api = this.api(settings);
api.row({order:'applied'}).select(); // get the first row in the current display and select it
},
this working