Why GlideModal is not able to open a UI Page?? I have created an UI Action and want to render a Glide- modal window, The same UI page is Opening in Glide Dialog Window but not in Modal?

Rudhi Sundar2
Kilo Explorer

this below code is for that,

the below given ui page is working fine with Glide Dialog Window

 

function show(){
var gm = new GlideModal("demo_page_action");
gm.setSize(600,800);
gm.setTitle('Show title');
gm.render();
}

1 ACCEPTED SOLUTION

Hi Rudhi,

Which version you are using?

did you go through this link:

https://developer.servicenow.com/app.do#!/api_doc?v=london&id=r_GMODV3-GlideModal_S_B_N_N

Regards

Ankur

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

View solution in original post

5 REPLIES 5

Ankur Bawiskar
Tera Patron
Tera Patron

Hi Rudhi,

Is the functionality working with GlideDialogWindow? 

Mark Correct if this solves your issue and also mark Helpful if you find my response worthy based on the impact.
Thanks
Ankur

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

Yes, 

Hi Rudhi,

Which version you are using?

did you go through this link:

https://developer.servicenow.com/app.do#!/api_doc?v=london&id=r_GMODV3-GlideModal_S_B_N_N

Regards

Ankur

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

Hi, Ankur

I am using London version.

that thing  has solved now, issue was in the function.  

yes, i have already gone through that link.

thanks for your response.