popupRecord
To open a given record in a pop-up form
This function opens the form of the given record as a pop-up. If you want, you can also specify the tab that should be opened.
To open the form of a record and the respective table simultaneously, use
openRecord()
.popupRecord(nid)
popupRecord(nid, string)
void
popupRecord(myRecord)
To open a given record in a pop-up form.1
popupRecord(first(select Customers))
Result: The first record of the Customers table opens in a pop-up form.
popupRecord(myRecord, tabName)
To open a given record with a given tab in a pop-up form.1
popupRecord(first(select Customers), "Company information")
Result: Opens the form as a popup of the first record of the Customers table with the Company information tab selected.
Last modified 7mo ago