You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have two dataTables in the same page and I'm trying to edit them both using
jEditable. But only one of those tables can be editable and the other wouldn't
work. Is this a known issue?
$('#Table1').dataTable().makeEditable({
"aoColumns": [
{
tooltip: "Double click to edit",
indiactor: 'Saving...',
onblur: 'submit'
}, null
],
"sUpdateURL": 'EditTable1'
});
$('#Table2').dataTable().makeEditable({
"aoColumns": [
{
tooltip: "Double click to edit",
indiactor: 'Saving...',
onblur: 'submit'
}, null
],
"sUpdateURL": 'EditTable2'
});
Editing Table2 works fine but editing Table1 would do nothing at all.
Original issue reported on code.google.com by [email protected] on 18 Mar 2015 at 10:32
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 18 Mar 2015 at 10:32The text was updated successfully, but these errors were encountered: