I defined a button inside a column of a datagrid. Is it possible to disable the button based on the happening of certain conditions? I have only managed to find the "visible" option which allows me to hide it but not disabling it.
<dx-data-grid id="gridContainer" [dataSource]="orders" [showBorders]="true">
<dxi-column type="buttons>
<dxi-button icon=".../image.png" [onClick]="updatePositive">
</dxi-button>
</dxi-column>
</dx-data-grid>