Ask a Question related to ASP.NET General, Design and Development.
-
Joseph D. DeJohn #1
DataGrid Pagination
I am trying to get pagination working on a datagrid. Can anyone point me to
a resource for help on this? I'm not sure if custom paging is the best
option or not.
Joseph D. DeJohn Guest
-
Book Pagination (.indb) Continuous Pagination (HELP!)
THE DOCUMENT: I've been working on a book with 14 separate documents using the Book feature (.indb) which coordinates the separate chapters... -
Pagination help?
Looking for advice on the best way to do this: We're a daily newspaper with 8 page editors doing layout all at once — each editor has 5-7 pages... -
Pagination?
how to pagination by flex?who can help me? -
Datagrid pagination with previous/ next and numbers simultane
I have data grid in one of my application and I want to use previous next and numberic paging simultaneously. It is like the google page which has... -
datagrid custom pagination
Hi Sudha, You can create different view for each user. While creating view specify the session name for each user. If the data is not pretty much... -
Yangtsi River #2
Re: DataGrid Pagination
hi,
I posted a similar post below.
datagrid does paging for you, u just set AllowPaging=true for datagrid.
it's said that custom paging is not paging at all, no page index appeared
at the bottom if you use custom paging.
what kind of datasource u r using for datagrid control,it seems that
matters
too.
Yangtsi.
"Joseph D. DeJohn" <joeddejohn@hotmail.com> дÈëÏûÏ¢ÐÂÎÅ
:Oz0Qn#cQDHA.2312@TK2MSFTNGP12.phx.gbl...to> I am trying to get pagination working on a datagrid. Can anyone point me> a resource for help on this? I'm not sure if custom paging is the best
> option or not.
>
>
Yangtsi River Guest
-
Joseph D. DeJohn #3
Re: DataGrid Pagination
I saw your post, but the default pagination is having problems working. I
opted for the only other alternative. You can guess. I am using a SQL
datasource. Can't believe you are having problems with custom paging also.
Dunno what to think at this point.
"Yangtsi River" <nakhi@sina.com> wrote in message
news:eRWNPRdQDHA.3236@TK2MSFTNGP10.phx.gbl...me> hi,
> I posted a similar post below.
> datagrid does paging for you, u just set AllowPaging=true for datagrid.
> it's said that custom paging is not paging at all, no page index appeared
> at the bottom if you use custom paging.
>
> what kind of datasource u r using for datagrid control,it seems that
> matters
> too.
>
> Yangtsi.
>
>
>
> "Joseph D. DeJohn" <joeddejohn@hotmail.com> дÈëÏûÏ¢ÐÂÎÅ
> :Oz0Qn#cQDHA.2312@TK2MSFTNGP12.phx.gbl...> > I am trying to get pagination working on a datagrid. Can anyone point> to>> > a resource for help on this? I'm not sure if custom paging is the best
> > option or not.
> >
> >
>
Joseph D. DeJohn Guest
-
Daniel Bass #4
Re: DataGrid Pagination
allowpaging passes control to the datagrid to take care of most of it, all
it means is the control divides up the page according to your page count,
you still have to instantiate a post back procedure that handles switching
to the different pages...
custom pages does work, but it doesn't split the pages up for you, you've
more control, and hence have to do more work with the control to get the
results you want... (you may want all the records in may 2000 in one page,
for example, and there may be more in june, so a straight count that the
allowpaging uses wouldn't work...)
the postback method is easy enough.
Sub MyDBgrid_Paging(sender As Object, e As DataGridPageChangedEventArgs)
MyDBgrid.CurrentPageIndex = e.NewPageIndex
BindData()
End Sub
this simply gets the number that was clicked on from 'e', then tell the grid
what page it's on before binding the data.
good luck
"Joseph D. DeJohn" <joeddejohn@hotmail.com> wrote in message
news:e52bAZdQDHA.2320@TK2MSFTNGP12.phx.gbl...also.> I saw your post, but the default pagination is having problems working. I
> opted for the only other alternative. You can guess. I am using a SQL
> datasource. Can't believe you are having problems with custom pagingappeared> Dunno what to think at this point.
>
> "Yangtsi River" <nakhi@sina.com> wrote in message
> news:eRWNPRdQDHA.3236@TK2MSFTNGP10.phx.gbl...> > hi,
> > I posted a similar post below.
> > datagrid does paging for you, u just set AllowPaging=true for datagrid.
> > it's said that custom paging is not paging at all, no page indexbest> me> > at the bottom if you use custom paging.
> >
> > what kind of datasource u r using for datagrid control,it seems that
> > matters
> > too.
> >
> > Yangtsi.
> >
> >
> >
> > "Joseph D. DeJohn" <joeddejohn@hotmail.com> дÈëÏûÏ¢ÐÂÎÅ
> > :Oz0Qn#cQDHA.2312@TK2MSFTNGP12.phx.gbl...> > > I am trying to get pagination working on a datagrid. Can anyone point> > to> > > a resource for help on this? I'm not sure if custom paging is the>> >> > > option or not.
> > >
> > >
> >
>
Daniel Bass Guest



Reply With Quote

