GridCommand
|
Type of item used to invoke the method
|
FireCommandEvent syntax
|
eventArgs details
|
|---|
Edit | GridEditableItem, GridDataItem | FireCommandEvent("Edit", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("Edit", String.Empty) |
Update | GridEditableItem, GridDataItem | FireCommandEvent("Update", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("Update", String.Empty) |
Delete | GridDataItem | FireCommandEvent("Delete", GridCommandEventArgs) | Required but not used FireCommandEvent("Delete", String.Empty) |
InitInsert | GridEditableItem, GridCommandItem | FireCommandEvent("InitInsert", GridCommandEventArgs) | Required but not used FireCommandEvent("InitInsert", String.Empty) |
PerformInsert | GridEditableItem,GridCommandItem | FireCommandEvent("PerformInsert", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("PerformInsert", String.Empty) |
Cancel | GridEditableItem | FireCommandEvent("Cancel", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("Cancel", String.Empty) |
Page | GridPagerItem | FireCommandEvent("Page", GridPageChangedEventArgs) | string argument: "First", "Next", "Prev", "Last", numeric values as string presentationExample: FireCommandEvent("Page", "Next") |
Sort | GridHeaderItem | FireCommandEvent("Sort", GridSortCommandEventArgs) | string argument: fieldName (mandatory), sortOrder (optional) Example: FireCommandEvent("Sort", "ContactName") |
Select | GridDataItem | FireCommandEvent("Select", GridSelectCommandEventArgs) | Required but not used Example: FireCommandEvent("Select", String.Empty) |
Deselect | GridDataItem | FireCommandEvent("Deselect", GridDeselectCommandEventArgs) | Required but not used Example: FireCommandEvent("Deselect", String.Empty) |
ExpandCollapse | GridDataItem | FireCommandEvent("ExpandCollapse", GridExpandCommandEventArgs) | Required but not used Example: FireCommandEvent("ExpandCollapse", String.Empty) |
Filter | GridFilteringItem | FireCommandEvent("Filter", GridFilterCommandEventArgs) | Pair holding the menu item value and the column UniqueName Example: FireCommandEvent("Filter", new Pair(menuItem.Value,columnUniqueName)) |
HeaderContextMenuFilter | GridHeaderItem | FireCommandEvent("HeaderContextMenuFilter", GridHeaderContextMenuFilterEventArgs) | Triplet holding the name of the column and two pairs for the filter conditions data. Example: FireCommandEvent("HeaderContextMenuFilter", new Triplet() { First = "OrderID", Second = new Pair() { First = "GreaterThan", Second = 10250 }, Third = new Pair() { First = "LessThan", Second = 10342 } } ); |
ExportToExcel | GridCommandItem | FireCommandEvent("ExportToExcel", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("ExportToExcel", String.Empty) |
ExportToWord | GridCommandItem | FireCommandEvent("ExportToWord", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("ExportToWord", String.Empty) |
ExportToPdf | GridCommandItem | FireCommandEvent("ExportToPdf", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("ExportToPdf", String.Empty) |
ExportToCsv | GridCommandItem | FireCommandEvent("ExportToCsv", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("ExportToCsv", String.Empty) |
EditSelected | GridCommandItem | FireCommandEvent("EditSelected", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("EditSelected", String.Empty) |
UpdateEdited | GridCommandItem | FireCommandEvent("UpdateEdited", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("UpdateEdited", String.Empty) |
DeleteSelected | GridCommandItem | FireCommandEvent("DeleteSelected", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("DeleteSelected", String.Empty) |
EditAll | GridCommandItem | FireCommandEvent("EditAll", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("EditAll", String.Empty) |
CancelAll | GridCommandItem | FireCommandEvent("CancelAll", GridCommandEventArgs) | Required but not used Example: FireCommandEvent("CancelAll", String.Empty) |
DownloadAttachment | GridDataItem | FireCommandEvent("DownloadAttachment", GridDownloadAttachmentCommandEventArgs) |
IDictionary collection of key/value pairs (see this demo)
Example: Dictionary<string, object> dict = new Dictionary<string, object>(); dict["ColumnUniqueName"] = "AttColumn1"; dict["FileName"] = "report.doc"; dict["FileId"] = "1423"; FireCommandEvent("DownloadAttachment", dict) |