Class JqGridColumnDataEvent
Class which represents data event for jqGrid editable or searchable column
Inheritance
System.Object
JqGridColumnDataEvent
Namespace: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.Options.ColumnModel
Assembly: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.dll
Syntax
public class JqGridColumnDataEvent : object
Constructors
JqGridColumnDataEvent(String, String, Object)
Initializes a new instance of the JqGridColumnDataEvent class.
Declaration
public JqGridColumnDataEvent(string type, string function, object data = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | type | The type of the event. |
System.String | function | The function which will be called on the event. |
System.Object | data | The additional (optional) data for the event. |
Properties
Data
Gets the additional data for the event.
Declaration
public object Data { get; }
Property Value
Type | Description |
---|---|
System.Object |
Function
Gets the function which will be called on the event.
Declaration
public string Function { get; }
Property Value
Type | Description |
---|---|
System.String |
Type
Gets the type of the event.
Declaration
public string Type { get; }
Property Value
Type | Description |
---|---|
System.String |