How to load datagrid in edit mode?

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

  1. #1

    Default How to load datagrid in edit mode?

    Hi,
    Is there any way I can load a datagrid in edit mode (example : 2nd
    row should be in edit mode whe the page loads for the first time) when
    a page is loaded for the first time?
    The scenario is like this : I have a webpage with a table which has n
    number of columns.
    One of the columns in the table is a hyperlink and when the user clicks
    on a link I want to load a new page passing the ID of the link cilcked.
    In this new page I have a datagrid and depending on the ID passed, I
    want to make one of the rows in the grid editable when this new page
    loads.
    Thanks,
    Ashish.

    ashtek@gmail.com Guest

  2. Similar Questions and Discussions

    1. Positioning within a datagrid in edit mode
      Hi, When I press on the update button of my datagrid the current line go in edit mode, but I need to scroll down until I reach the line in edit...
    2. Would like to load a datagrid already in edit mode instead of having the user click the edit button
      Now my asp.net datagrid shows an edit button and clicking it puts the datagrid in edit mode. I would like to: 1) possilby load the page already...
    3. DataGrid Edit Mode
      Hi How can I programmatically switch a DataGrid into Edit Mode? I have a datagrid with no Edit / Delete / Update command buttons, only a...
    4. datagrid edit mode worries
      Hi! I have a datagrid with several editable columns - i've added an edit button and appropriate handlers for edit,update,cancel in my c#...
    5. How to validate a datagrid (in edit mode)?
      Hi, I'm trying to validate datagrid, but the problem is that textboxes exist only when the datagrid is in the edit mode, so validators can't...
  3. #2

    Default Re: How to load datagrid in edit mode?

    When you bind datagrid:

    datagrid.EditItemIndex = n;
    datagrid.DataSource = dataObject;
    datagrid.DataBind();

    HTH

    <ashtek@gmail.com> wrote in message
    news:1132902723.080188.280520@f14g2000cwb.googlegr oups.com...
    > Hi,
    > Is there any way I can load a datagrid in edit mode (example : 2nd
    > row should be in edit mode whe the page loads for the first time) when
    > a page is loaded for the first time?
    > The scenario is like this : I have a webpage with a table which has n
    > number of columns.
    > One of the columns in the table is a hyperlink and when the user clicks
    > on a link I want to load a new page passing the ID of the link cilcked.
    > In this new page I have a datagrid and depending on the ID passed, I
    > want to make one of the rows in the grid editable when this new page
    > loads.
    > Thanks,
    > Ashish.
    >

    Elton Wang 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