Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
ralf #1
datagrid manipulation issue
I am using vb.net, and here is what I am trying to do.
I have a datagrid that has lots of rows. The user has to either update
or delete each row. If the user has scrolled a long way down the page,
which happens, and deletes or updates a row, the databinding forces the
page to reload and the datagrid is viewed again starting at the top.
So, if the user is going from one row to the next, he would have to
scroll down to find his last position to do the step again. This is
very tiresome for the user.
I would like for the row to either update or delete and keep the user
at that position.
Is this possible?
What is the best approach?
ralf Guest
-
Datagrid select issue
I am using flex builder 2.01 and have been using datagrids for a while now. I have recently ran into a weird situation where I have one datagrid out... -
DataGrid manipulation
Hi, I have a question about custom datagrids or how i should show my results I have a sql statement that reads as follows: SELECT ... -
DataGrid Display Issue
Hi, I have one datagrig which is inside a Panel. I am having problems with the height . If I don't give height in datagrid then it displays all... -
Datagrid postback issue
Hello, I have a postback issue concerning the Datagrid. I posted this problem to several forums before and didn’t receive a single response from... -
DataGrid : dynamic manipulation of a template column using C#
I have created a DataGrid in the aspx page, with a template column, which has a label "lblTest2" in Item Template and a drop down list "ddlTest2" in... -
Brock Allen #2
Re: datagrid manipulation issue
If you are using ASP.NET 2.0 then you can put in the directive:
<%@ Page MaintainScrollPositionOnPostback="true" %>
-Brock
DevelopMentor
[url]http://staff.develop.com/ballen[/url]
> I am using vb.net, and here is what I am trying to do.
>
> I have a datagrid that has lots of rows. The user has to either
> update or delete each row. If the user has scrolled a long way down
> the page, which happens, and deletes or updates a row, the databinding
> forces the page to reload and the datagrid is viewed again starting at
> the top. So, if the user is going from one row to the next, he would
> have to scroll down to find his last position to do the step again.
> This is very tiresome for the user.
>
> I would like for the row to either update or delete and keep the user
> at that position.
>
> Is this possible?
> What is the best approach
Brock Allen Guest
-
ralf #3
Re: datagrid manipulation issue
I am running .NET 1.1, not 2.0. What are my options with this??
ralf Guest
-
Brock Allen #4
Re: datagrid manipulation issue
> I am running .NET 1.1, not 2.0. What are my options with this??
There is a <%@ Page SmartNavigation="true" %> option that sort of does the
same thing but it utilizes a hidden IFRAME to do the post. If it works for
you then great, but it might not.
-Brock
DevelopMentor
[url]http://staff.develop.com/balle[/url]
Brock Allen Guest
-
ralf #5
Re: datagrid manipulation issue
thx for that info. I believe it will work for me. All the clients
will have IE 5.5, and from what I have read, the smart navigation
should work with that.
ralf Guest



Reply With Quote

