ASPxClientGridViewColumnCancelEventArgs.column Property
Gets the processed client column.
Declaration
column: ASPxClientGridViewColumn
Property Value
Type | Description |
---|---|
ASPxClientGridViewColumn | An ASPxClientGridViewColumn object that represents the processed column. |
Remarks
<script>
function OnColumnSorting(s, e) {
if (e.column.fieldName == "Description")
e.cancel = true;
}
</script>
<dx:ASPxGridView ID="grid" runat="server" ClientInstanceName="grid" ...>
<ClientSideEvents ColumnSorting="OnColumnSorting" />
//...
</dx:ASPxGridView>
See Also