Page 1 of 1

Open Window Service Loads and Closes

Posted: October 20th, 2022, 12:31 pm
by Filip.Serw
I have a hyperlink setup with a controller based off of the click action. In the controller, I pass in the itemnumber and use it as a parameter for the OpenWindow service. The Open Window service uses a widget and is meant to display a Window. What occurs is, when I click on the item number to open the widget, The window opens and loads for a second. Then it automatically closes itself.
Window_Load.png

Re: Open Window Service Loads and Closes

Posted: October 20th, 2022, 12:53 pm
by SteveCap
You probably do not have anything set for the hyperlinks navigate url. When nothing is set it will not add anything to the html elements href which will refresh the page. You should set the property to either javascrip:void(0) or #

Re: Open Window Service Loads and Closes

Posted: October 20th, 2022, 1:00 pm
by Filip.Serw
I added the property, both options were available the property under a drop down. It is now working as expected. Thanks