How can I use a Run button so that the (valid) HTML page generated by the selected PHP-procedure is displayed directly in a new tab, but without the nuBuilder header?
Now I get a 'unexpected Error'.
When I select "iframe" as the target, it works, but I need the page to open seperatly in a new tab, so I want to use a button.
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Behavior of the RUN button Topic is solved
-
- nuBuilder Team
- Posts: 4562
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 528 times
- Contact:
Re: Behavior of the RUN button
Hi,
If I'm not mistaken, it is not currently supported by the run object to display the code in a new browser window, but you can use a normal button and then call
when the button is clicked.
If I'm not mistaken, it is not currently supported by the run object to display the code in a new browser window, but you can use a normal button and then call
Code: Select all
nuRunPHP('your_procedure_name');
Re: Behavior of the RUN button
Thank you very much, it works perfectly. Sometimes one does not see the simple solution.