how to add javascript to subform?
Posted: Tue Nov 09, 2021 3:23 am
i have an INVOICE PROCESS subform under INVOICE.
Then I use run object button to open the list of the INVOICE PROCESS subform.
On the list of the INVOICE PROGRESS, when I click a record, I can't edit it on a new tab.
I can edit records on a new browser tab using the following for a form:
But there's no place to edit subform records on a new tab.
Then I use run object button to open the list of the INVOICE PROCESS subform.
On the list of the INVOICE PROGRESS, when I click a record, I can't edit it on a new tab.
I can edit records on a new browser tab using the following for a form:
Code: Select all
function nuSelectBrowse(e){
var r = $('#' + e.target.id).attr('data-nu-primary-key');
nuForm(nuGetProperty('form_id'), r, '', '', '2');
}