I have a locked custom text field on an editable grid and would like this to not be locked. There is no javascript and everything on the field seems correct. On the form the field is editable just fine. What am I missing?
I have a locked custom text field on an editable grid and would like this to not be locked. There is no javascript and everything on the field seems correct. On the form the field is editable just fine. What am I missing?
If you are wondering where to find this just go to the entity's form designer and double-click on the sub-grid, add the JS library and connect to the OnRecordSelect event.
hi,
Call the following function for the OnRecordSelect editable grid event. Also check "Pass execution context as first parameter".
function onSelectSubGrid(context) { var subGrid = context.getFormContext().data.entity; subGrid.attributes.forEach(function (field, i) { field.controls.get(0).setDisabled(false); }); }
There is no business rule, flow, security, or javascript on the form that is tied to this grid.
Hello,
Sorry, I meant "Business Rule" on the form of related Entity.
could you explain more about what you mean?
hi,
Have you used "Business Process Flow" on the form of related Entity (Editable View)?
best regards.
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,269 Super User 2024 Season 2
Martin Dráb 230,198 Most Valuable Professional
nmaenpaa 101,156