Skip to main content
A newer version of this page is available. .
Tab

GridViewDataButtonEditColumn.PropertiesButtonEdit Property

Gets the column editor’s settings.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public ButtonEditProperties PropertiesButtonEdit { get; }

Property Value

Type Description
ButtonEditProperties

The ButtonEditProperties object.

Remarks

The PropertiesButtonEdit property allows you to customize the settings of the column’s editor with embedded buttons.

Note

Settings provided by the PropertiesButtonEdit property affect auto filter row editors. To customize such editors, handle the ASPxGridView.AutoFilterCellEditorInitialize event and use the ASPxGridEditorEventArgs.Editor property to get access to the filter row editor as shown in the code below.

protected void ASPxGridView_AutoFilterCellEditorInitialize(object sender, ASPxGridViewEditorEventArgs e) {
    if (e.Column.FieldName == "FIELD_NAME"){
        e.Editor.Width = Unit.Pixel(...);
        ...
    }
}
See Also