Table of Contents

Class GridViewRequest

Namespace
Dynamicweb.Core.UI
Assembly
Dynamicweb.Core.UI.dll
The class GridViewRequest represents request object of Dynamicweb.UI.Elements.Displays.GridView control.
public class GridViewRequest
Inheritance
GridViewRequest
Inherited Members

Constructors

GridViewRequest(IDictionary<string, string>)

Initializes a new instance of the GridViewRequest class.
public GridViewRequest(IDictionary<string, string> requestParameters)

Parameters

requestParameters IDictionary<string, string>
The request parameters.

Properties

NavigateToSelectedItem

Gets the value indicating whether to navigate to selected item.
public bool NavigateToSelectedItem { get; }

Property Value

bool

PageIndex

Gets the text current page index.
public int PageIndex { get; }

Property Value

int

PageSize

Gets the page size.
public int PageSize { get; }

Property Value

int

Parameters

Gets or sets the request parameters.
public IDictionary<string, string> Parameters { get; set; }

Property Value

IDictionary<string, string>

SearchText

Gets the text filter search text.
public string SearchText { get; }

Property Value

string

SelectedItem

Gets the selected item.
public string SelectedItem { get; }

Property Value

string
To top