How to prevent inline editor from disappearing when it loses focus
How to prevent inline editor from disappearing when it loses focus

Is there any way to keep inline editor opening even when it loses focus?
This question has an accepted answers - jump to answer
Answers
Yes, check this please:
https://editor.datatables.net/reference/option/formOptions.inline
You will probably need to change one or all of these depending on how you use inline editing:

The "onBlur" option is probably the one to change.
https://editor.datatables.net/reference/type/form-options
Example on how I use formOptions for inline editing:
https://datatables.net/forums/discussion/74108/inline-edition-unique-validation-for-two-columns#latest
Set onBlur to 'none' works for me. Thanks for the help!!