Class JqGridInlineNavigatorActionOptions
Class which represents options for jqGrid Inline Navigator action.
Namespace: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.Options.Navigator
Assembly: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.dll
Syntax
public class JqGridInlineNavigatorActionOptions : object
Constructors
JqGridInlineNavigatorActionOptions()
Initializes a new instance of the JqGridInlineNavigatorActionOptions class.
Declaration
public JqGridInlineNavigatorActionOptions()
Properties
AfterRestoreFunction
Gets or sets the function for event which is raised after restoring the row.
Declaration
public string AfterRestoreFunction { get; set; }
Property Value
Type | Description |
---|---|
System.String |
AfterSaveFunction
Gets or sets the function for event which is raised after the data is saved to the server.
Declaration
public string AfterSaveFunction { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ErrorFunction
Gets or sets the function for event which is raised when error occurs during saving to the server.
Declaration
public string ErrorFunction { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ExtraParam
Gets or sets the extra values that will be posted with row values to the server.
Declaration
public object ExtraParam { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
ExtraParamScript
Gets or sets the JavaScript which will dynamically generate the extra values that will be posted with row values to the server (this property takes precedence over ExtraParam).
Declaration
public string ExtraParamScript { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Keys
Gets or sets the value indicating if user can use [Enter] key to save and [Esc] key to cancel.
Declaration
public bool Keys { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
MethodType
Gets or sets the type or request to make when data is sent to the server.
Declaration
public JqGridMethodTypes MethodType { get; set; }
Property Value
Type | Description |
---|---|
JqGridMethodTypes |
OnEditFunction
Gets or sets the function for event which is raised after successfully accessing the row for editing.
Declaration
public string OnEditFunction { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RestoreAfterError
Gets or sets the value indicating if the row should be restored in case of error while saving to the server.
Declaration
public bool RestoreAfterError { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
SuccessFunction
Gets or sets the function for event which is raised immediately after the successful request to the server.
Declaration
public string SuccessFunction { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Url
Gets or sets URL for the request (replaces the EditingUrl from JqGridOptions).
Declaration
public string Url { get; set; }
Property Value
Type | Description |
---|---|
System.String |