ASPxClientPivotMenuItemClickEventArgs.FieldID Property
Gets the field’s unique identifier.
Declaration
FieldID: string
Property Value
Type | Description |
---|---|
string | A string which specifies the field’s unique identifier. |
Remarks
To obtain the field value for which the popup menu has been invoked, do the following:
- send a callback to the server by calling the ASPxClientPivotGrid.PerformCallback method. Pass the field identifier (
ASPxClientPivotMenuItemClickEventArgs.FieldID
) and field value index (ASPxClientPivotMenuItemClickEventArgs.FieldValueIndex) as a string of arguments. - handle the server-side ASPxPivotGrid.CustomCallback event, parse the passed information and obtain the required field value via the ASPxPivotGrid.GetFieldValueByIndex method.
See Also