function formatZIPCodeDecimalFromSubgridField1(executionContext) { var formContext = executionContext.getFormContext(); debugger; var tabName = /tab_Settings/; var tabControl = formContext.ui.tabs.get(tabName); if (tabControl.getVisible()) { var subgridControl = tabControl.sections.get(/tab_4_section_3/).controls.get(/Subgrid_new_2/); subgridControl.refresh(); setTimeout(function () { var selectedRecords = subgridControl.getGrid().getRows(); selectedRecords.forEach(function (record) { var fieldName = /code/; var fieldValue = record.getData().getEntity().attributes.get(fieldName).getValue(); if (fieldValue !== null) {var rowId = record.getData().getEntity().getId();//subgridControl.SelectRow(1); //subgridControl.getGrid().setSelection(rowId, true); } }); }, 1000); }}
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,240 Super User 2024 Season 2
Martin Dráb 230,149 Most Valuable Professional
nmaenpaa 101,156