Creating a Modal window help?

Hello does any one know how to create a popup modal window in plumsail.

Its simple in sharepoint you just add custom webpart with jquery in it and when the page runs it opens the html popup.

i wanted to create on when users create a NEW Form.

this is my code in a normal sharepoint page but i cant get it to work in plumsail..

Modal.html (2.1 KB)

Hello @gordy,

Welcome to Plumsail Community!

You can use a Dialog to open a page in dialog from a parent form on form load. For instance:

fd.spRendered(function() {
       Dialog.open('Your Page URL', { width: 50, height: 50  });
});