MapperExtensionKernelRowDrilldown Method |
Datasheet drilldown buttons are normally rendered as links to the same detail page with a different
RowKey per link. However, when the DrilldownAttrs.FireDrilldownEvent bit is set, the drilldown
button is rendered as a button that, when clicked, posts back the page causing the mapper to fire
the this event. The event will be fired on a clone of the mapper positioned to the row
that was clicked (per its RowKey). Typically an extension handling this event will
programmatically determine the drilldown target and call
Navigate(String, String, String, String) or
alter the
RowDrilldownArgs values to specify a new target MOP and/or RowKey and
allow the mapper to perform the custom navigation. If no action is performed by the extension
then the mapper will perform the Application.Navigate using the same MOP and RowKey that it would
have used had the FireDrilldownEvent not been set.
Namespace:
NetQuarry.Data
Assembly:
EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public virtual void RowDrilldown(
IMapper sender,
RowDrilldownArgs e
)
Public Overridable Sub RowDrilldown (
sender As IMapper,
e As RowDrilldownArgs
)
Parameters
- sender
- Type: NetQuarry.DataIMapper
The event's sender. - e
- Type: NetQuarryRowDrilldownArgs
Event arguments.
See Also