Version

RowEditTemplateRequested Event

RowEditTemplateRequested is fired when an action is performed that will cause a RowEditTemplate to be shown.
Syntax
'Declaration
 
Public Event RowEditTemplateRequested As RowEditTemplateRequestedEventHandler
public event RowEditTemplateRequestedEventHandler RowEditTemplateRequested
Event Data

The event handler receives an argument of type RowEditTemplateRequestedEventArgs containing data related to this event. The following RowEditTemplateRequestedEventArgs properties provide information specific to this event.

PropertyDescription
Handled (Inherited from System.ComponentModel.HandledEventArgs) 
Template Gets the resolved template of the row about to be edited.
Remarks

This event provides the ability to take the UltraGridRowEditTemplate associate with the row and manually reparent the template into a form or control.

Note: If this event is handled and the RowEditTemplate is reparented and manually shown, the grid no longer has control over when to close the template; as such, it is the responsibility of the developer to determine under which conditions the template should be closed.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also