ASPxGridListEditor.CreateCustomEditItemTemplate Event
Occurs when the GridViewDataColumn.EditItemTemplate is initialized.
Namespace: DevExpress.ExpressApp.Web.Editors.ASPx
Assembly: DevExpress.ExpressApp.Web.v24.2.dll
NuGet Package: DevExpress.ExpressApp.Web
#Declaration
public event EventHandler<CreateCustomEditItemTemplateEventArgs> CreateCustomEditItemTemplate
#Event Data
The CreateCustomEditItemTemplate event's data class is CreateCustomEditItemTemplateEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Data |
Gets the object that provides info on the Grid |
Handled |
Gets or sets a value that indicates whether the event handler has completely handled the event or whether the system should continue its own processing.
Inherited from Handled |
Model |
Gets the Application Model settings of the column.
Inherited from Create |
Template |
Specifies a template that is used to display a data cell or edit cell.
Inherited from Create |
#Remarks
This event is triggered when the current List View is editable (see View.AllowEdit) and the GridViewDataColumn.EditItemTemplate is null (Nothing in VB). To specify a custom ITemplate, handle this event, pass the custom ITemplate object to the handler’s CreateCustomItemTemplateEventArgs.Template parameter and set the Handled parameter to true. If you set Handled to true, and do not initialize Template, the default column behavior will be used.
using DevExpress.ExpressApp;
using DevExpress.ExpressApp.Web.Editors.ASPx;
// ...
public class CreateCustomEditItemTemplateController : ObjectViewController<ListView, Person> {
protected override void OnActivated() {
base.OnActivated();
ASPxGridListEditor listEditor = (ASPxGridListEditor)View.Editor;
listEditor.CreateCustomEditItemTemplate += listEditor_CreateCustomEditItemTemplate;
}
private void listEditor_CreateCustomEditItemTemplate(
object sender, CreateCustomEditItemTemplateEventArgs e) {
// ...
e.Handled = true;
}
protected override void OnDeactivated() {
base.OnDeactivated();
ASPxGridListEditor listEditor = (ASPxGridListEditor)View.Editor;
listEditor.CreateCustomEditItemTemplate -= listEditor_CreateCustomEditItemTemplate;
}
}
Important
You should subscribe to this event before the View.