Class JqGridColumnEditOptions
Class which represents options for jqGrid editable column
Inherited Members
Namespace: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.Options.ColumnModel
Assembly: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.dll
Syntax
public class JqGridColumnEditOptions : JqGridColumnElementOptions
Constructors
JqGridColumnEditOptions()
Initializes a new instance of the JqGridColumnEditOptions class.
Declaration
public JqGridColumnEditOptions()
Properties
CustomElementFunction
Gets or sets the name of function which is used to create custom edit element
Declaration
public string CustomElementFunction { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CustomValueFunction
Gets or sets the name of function which should return the value from the custom element after the editing.
Declaration
public string CustomValueFunction { get; set; }
Property Value
Type | Description |
---|---|
System.String |
NullIfEmpty
Gets or sets the value which defines if null value should be send to server if the field is empty.
Declaration
public bool NullIfEmpty { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
PostData
Gets or sets the additional data which will be added to the AJAX request to get the data for the select element (if EditType is JqGridColumnEditTypes.Select).
Declaration
public object PostData { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
PostDataScript
Gets or sets the JavaScript which will dynamically generate the additional data which will be added to the AJAX request to get the data for the select element (if EditType is JqGridColumnEditTypes.Select). This property takes precedence over PostData.
Declaration
public string PostDataScript { get; set; }
Property Value
Type | Description |
---|---|
System.String |