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
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
processingas a class to thediv.DTEelement 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