This topic is locked
[SOLVED]

 Disable Green Checkmark (Save) and blue backwards arrow (Cancel) Buttons in Inline Edit Row

8/26/2013 9:52:42 PM
PHPRunner General questions
C
copper21 author

Is there a way for the green check mark (Save) and blue backwards (Cancel) buttons/icons to be disabled on an inline edit? I would like to just utilize the "Save all" button and not allow users to save/cancel by the rows individually.
I saw how you can disable the cancel (through revokeCancel), but not both the cancel and save.
Thanks,
Brian
PHPRunner 6.2

C
cgphp 8/28/2013

In the "Javascript onload event", enter thsi code:

$("tbody").bind("DOMSubtreeModified", function() {

$("a[id^='saveLink']").remove();

$("a[id^='revertLink']").remove();

});
C
copper21 author 8/28/2013

Once again, thanks Cristian; works perfectly.