Click or drag to resize

TypedMapperExtensionTRowAjaxRequest Method

Fired when an AJAX request was directed to this mapper. The mapper has been requeried on the requested RowKey and the extension should take appropriate action which might include returning a JSON response in the event arguments. Upon return, the HTTP response will be cleared and any JsonResponse set in the event args will be written to the response. If the extension DOES NOT want this value written to a cleared response object, set the ExtResults.HandledByExt or ExtResults.ContinueNoExec result in the event args. Note that a cancel result will also prevent the HTTP response from being modified.

Namespace:  NetQuarry.Data
Assembly:  EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public virtual void RowAjaxRequest(
	T sender,
	string requestName,
	AjaxRequestEventArgs e
)

Parameters

sender
Type: T
The event's sender.
requestName
Type: SystemString
The Request Name.
e
Type: NetQuarryAjaxRequestEventArgs
Event arguments.
See Also