I'm using the DxGrid component for a razor page in a Blazor Webassembly project. Having the following declaration in the DxGrid component:
<Columns>
<DxGridDataColumn FieldName="column1" />
<DxGridDataColumn FieldName="column2" />
<DxGridDataColumn FieldName="column3" />
<DxGridCommandColumn Width="160px" DeleteButtonVisible="false" />
</Columns>
the rendered grid will have 4 column with the last one having the Add, Edit functions, the Delete is hidden because of the DeleteButtonVisible="false". But is there a way to hide that Delete in function of the value of the property for a specific row?
Solved in this way: