Posted 11 February 2021, 6:16 pm EST
I need to make the cells in a row read only based on the value entered in another call in the row. I want to style the readonly cells so just trapping and cancelling edit does not work for my scenario.
Is it possible to bind isReadOnly in a wj-flex-grid-column?
e.g. I want to do something like:
<wj-flex-grid-column [header]="Parameter1" [binding]="'parameter1'" [minWidth]="75" [width]="100" ></wj-flex-grid-column> <wj-flex-grid-column [header]="DependentParameter1" [binding]="'dependentParameter1'" [minWidth]="75" [width]="100" [isReadOnly]="'parameter1 > 50'" > </wj-flex-grid-column>