Hi,
Im working with the new Power Apps Grid control,
- Configured the control as editable in the Sub-Grid

- Add a JavaScript function on event "onRecordSelect" and check "Pass execution context as first parameter"


I want to disable some cells from javascript function but I dont know how can I get the gridContext functions in order to disable cells.
var ContactsGrid = window.ContactsGrid || {};
(function () {
this.onRecordSelect = function (executionContext) {
console.log(executionContext);
}
}).call(ContactsGrid);
The execution context object.
