Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
ashtek@gmail.com #1
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
-
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... -
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... -
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... -
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#... -
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... -
Elton Wang #2
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



Reply With Quote

