while creating new entry on the in edit datatable when click on create button how to change that button into a processing icon on create button
Hi,
There isn't an API specifically to make a button in the Editor submit buttons show in a processing state, however it is possible via CSS. Editor adds processing as a class to the div.DTE element when it is processing (submitting) so you could use:
processing
div.DTE
div.DTE.processing div.DTE_Form_Buttons button { /* ... processing styling */ }
Allan
hi we have any click event for create button onclick in datatable ?
No - Editor's API doesn't present an option to add an onclick event listener to it as such. Instead listen for preSubmit.
preSubmit
It looks like you're new here. If you want to get involved, click one of these buttons!
Replies
Hi,
There isn't an API specifically to make a button in the Editor submit buttons show in a processing state, however it is possible via CSS. Editor adds
processing
as a class to thediv.DTE
element when it is processing (submitting) so you could use:Allan
hi
we have any click event for create button onclick in datatable ?
No - Editor's API doesn't present an option to add an onclick event listener to it as such. Instead listen for
preSubmit
.Allan