Hi,
1.Is it possible to add an extra button in add or edit dialog forms?
2.can it be possible to clear all field inputs ?
Regards…
2 Answers
It is not currently supported. I'm checking it for feasibility.
Will update again once found some solution.
Hello,
1) You can check faq query for custom button – How to add custom buttons in add/edit dialogs?
2) By above code, you can add clear button, and clear fields by setting them to '';
e.g.
$("#invdate").val("");
$("#gender").val("");
Your Answer