datagrid manipulation issue

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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 ...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default Re: datagrid manipulation issue

    I am running .NET 1.1, not 2.0. What are my options with this??

    ralf Guest

  5. #4

    Default 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

  6. #5

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139