Show / Hide Table of Contents

Class JqGridNavigatorActionOptions

Class which represents options for jqGrid Navigator action.

Inheritance
System.Object
JqGridNavigatorActionOptions
JqGridNavigatorFormActionOptions
JqGridNavigatorSearchActionOptions
Namespace: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.Options.Navigator
Assembly: Lib.AspNetCore.Mvc.JqGrid.Infrastructure.dll
Syntax
public abstract class JqGridNavigatorActionOptions : object

Constructors

JqGridNavigatorActionOptions()

Initializes a new instance of the JqGridNavigatorActionOptions class.

Declaration
protected JqGridNavigatorActionOptions()

Properties

CloseOnEscape

Gets or sets the value indicating if modal window can be closed with ESC key.

Declaration
public bool CloseOnEscape { get; set; }
Property Value
Type Description
System.Boolean

DataHeight

Gets or sets the height of the scrolling content (i.e between the modal header and modal footer).

Declaration
public int? DataHeight { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

DataWidth

Gets or sets the width of the scrolling content.

Declaration
public int? DataWidth { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Dragable

Gets or sets the value indicating if dialog is dragable (requires jqDnR plugin or dragable widget from jQuery UI).

Declaration
public bool Dragable { get; set; }
Property Value
Type Description
System.Boolean

Height

Gets or sets the entry height of confirmation dialog.

Declaration
public int? Height { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Left

Gets or sets the initial left position of modal dialog.

Declaration
public int Left { get; set; }
Property Value
Type Description
System.Int32

Modal

Gets or sets the value indicating if dialog is modal (requires jqModal plugin).

Declaration
public bool Modal { get; set; }
Property Value
Type Description
System.Boolean

OnClose

Gets or sets the function for event which is raised just before closing the form.

Declaration
public string OnClose { get; set; }
Property Value
Type Description
System.String

Overlay

Gets or sets the value controling overlay in the grid.

Declaration
public int Overlay { get; set; }
Property Value
Type Description
System.Int32

Resizable

Gets or sets the value indicating if dialog is resizable (requires jqDnR plugin or resizable widget from jQuery UI).

Declaration
public bool Resizable { get; set; }
Property Value
Type Description
System.Boolean

Top

Gets or sets the initial top position of modal dialog.

Declaration
public int Top { get; set; }
Property Value
Type Description
System.Int32

UseJqModal

Gets or sets the value indicating if jqModel plugin should be used for creating dialogs otherwise jqGrid uses its internal function.

Declaration
public bool UseJqModal { get; set; }
Property Value
Type Description
System.Boolean

Width

Gets or sets the width of confirmation dialog in pixels (default 'auto').

Declaration
public int Width { get; set; }
Property Value
Type Description
System.Int32
Back to top Copyright © 2016 - 2019 Tomasz Pęczek