Is there any possibility to display a view inside a pop-up window?

I want to display a view inside a pop-up window. on button click !

For a conventional popup window, you can use add an “Execute viewON Script” action to a button with code like open('./popup.shtm', '_blank', 'width=800,height=600,left=100,top=100');

This will open the view named popup in an 800x600 window, moved 100 pixels down and to the right from the top left corner of the screen.

It’s also possible to open a viewON page in a new tab without any scripting by configuring a button with an action like this:

Finally, you can create a simple alert popup with a command like alert("Text for alert popup!"); by adding the action “Execute viewON Script” to a button. It will look like this:
image