Is there a way, via jQuery when you are into an opened dialog, to know if the dialog is an edit or an add dialog, more professional than test the title dialog?
Thank in advance.
Massimo Gagliardi
1 Answers
You can check the title of dialog using jquery.
e.g. to check if edit dialog
if (jQuery('.ui-jqdialog-title').html() == "Edit Record") { …. }
Your Answer