Hi Sir How Can I call Inline Dialogue FROM Menu For Example I Have In Page 2 Inline Dialogue With Static Id MY_DLGM
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
use javascript functions to call inline dialog
like the following for open and close dialogy
function should be created in global javascript declaration
function open_model(){
$(‘#id’).dialog(‘open’);
}
id the static id of that inline model
to close the model use close instead of open in above function
i hope it helps you
sorry use .model instead of .dialog it makes error
use .dialog not .model mistakenly written