I'm looking for a possibility to embed a browse form in another (edit) form. The browse form's purpose is to display data and no edit form should be opened when a record is clicked.
Also, no search field or other buttons should be shown. Is this possible?
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.
embed browse in form
-
- Posts: 785
- Joined: Sun Oct 14, 2018 11:25 am
Re: embed browse in form
Hi,
Add an object (Type: Run) with Run Method iFrame. This will embed the selected form.
Add this Code to "Custom Code" -> JS of your embedded form:
Add an object (Type: Run) with Run Method iFrame. This will embed the selected form.
Add this Code to "Custom Code" -> JS of your embedded form:
Code: Select all
$('.nuActionButton').hide();
$('#nuSearchField').hide();
$('#nuActionHolder').hide();
$('#nuBreadcrumbHolder').hide();
$('body').css('height', '200px'); // maybe set the body height to disable the vertical scrollbar.
function nuSelectBrowse(e) {
// do nothing when a record is clicked
}
Re: embed browse in form
Timo,
I agree with toms,
https://wiki.nubuilder.cloud/ ... #Tab_-_Run
Set Method to iFrame.
To answer your second question, try this...
https://wiki.nubuilder.cloud/ ... oveHolders
Steven
I agree with toms,
https://wiki.nubuilder.cloud/ ... #Tab_-_Run
Set Method to iFrame.
To answer your second question, try this...
https://wiki.nubuilder.cloud/ ... oveHolders
Steven