Back to Devexpress

CRXPF0002 - ColumnBase.EditTemplate is used

coderushforroslyn-403946-static-code-analysis-xaml-analyzers-crxpf-0002-column-base-edit-template-is-used.md

latest995 B
Original Source

CRXPF0002 - ColumnBase.EditTemplate is used

  • Feb 14, 2023

Severity: Error

The analyzer detects that you use the obsolete ColumnBase.EditTemplate property.

Examples

Invalid Code

xaml
<dxg:GridControl ...>
    <dxg:GridColumn FieldName="SomeFieldName">
        <dxg:GridColumn.EditTemplate>
            <!-- ... --> 
        </dxg:GridColumn.EditTemplate>
    </dxg:GridColumn>
</dxg:GridControl>

Valid Code

xaml
<dxg:GridControl ...>
    <dxg:GridColumn FieldName="SomeFieldName">
        <dxg:GridColumn.CellEditTemplate>
            <!-- ... -->
        </dxg:GridColumn.CellEditTemplate>
    </dxg:GridColumn>
</dxg:GridControl>

How to Fix

Use the ColumnBase.CellEditTemplate property to display a custom editor that allows users to edit column values.