0

I'm using an obout grid and I wanted to know, what is the obout equivalent to PageIndex?

For example, using Visual Studio's GridView, I would say:

if (Session["PageIndex"] != null && !string.IsNullOrEmpty(Session["PageIndex"].ToString())) Grid1.PageIndex= (int)Session["PageIndex"];

However; obout doesn't have a property called "PageIndex". What would be the equivalent?

Has QUIT--Anony-Mousse
  • 76,138
  • 12
  • 138
  • 194
JTRookie86
  • 215
  • 3
  • 5
  • 15

1 Answers1

0

http://www.obout.com/grid/grid_paging.aspx

http://www.obout.com/grid/doc_server_side_grid.aspx#grid_tips_paging

Property is called "CurrentPageIndex"

Change pages with :

http://www.obout.com/grid/grid_paging_client.aspx

J...
  • 30,968
  • 6
  • 66
  • 143
  • When a user clicks on one of the page numbers and the grid goes to that page, where do i store the pageindex? I noticed that there's no event for pageindexchanged. – JTRookie86 Jan 17 '12 at 19:22
  • Client side method - getCurrentPageIndex – J... Jan 17 '12 at 19:36