Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx_beginners thread: editable datagrid: all rows in edit mode?


Message #1 by "Sam" <samasp@d...> on Sun, 16 Feb 2003 17:54:37
Hello,

I have the following question about an editable datagrid:

Normally, you have one editable row in your datagrid.  But what I need is 
a grid (filled with data from a database) where all rows are in edit mode 
at the same time, so that the user can edit all the rows at once (like you 
are editing data in Excel, for example).

I don't think this is possible with the default asp.net datagrid.  If not, 
are there other third-party datagrid controls where this is possable?

Thanks in advance.

Kind regards,

Sam Schotte
Belgium


Message #2 by "Jerry Lanphear" <jerrylan@q...> on Sun, 16 Feb 2003 12:09:28 -0700
When you use ADO.NET and SQL to perform a select of desired rows in a table
using a DataAdapter and set the datasource on the datagrid to that
collection you have access to all the rows and columns.  Of course you can
configure the datagrid to give access to only certain fields or rows.  When
you perform an update on the data the original data source is updated.

Regards
----- Original Message -----
From: "Sam" <samasp@d...>
To: "aspx_beginners" <aspx_beginners@p...>
Sent: Sunday, February 16, 2003 5:54 PM
Subject: [aspx_beginners] editable datagrid: all rows in edit mode?


> Hello,
>
> I have the following question about an editable datagrid:
>
> Normally, you have one editable row in your datagrid.  But what I need is
> a grid (filled with data from a database) where all rows are in edit mode
> at the same time, so that the user can edit all the rows at once (like you
> are editing data in Excel, for example).
>
> I don't think this is possible with the default asp.net datagrid.  If not,
> are there other third-party datagrid controls where this is possable?
>
> Thanks in advance.
>
> Kind regards,
>
> Sam Schotte
> Belgium
>
>
>
>

Message #3 by "Rohit Arora" <rohit_arora@i...> on Mon, 17 Feb 2003 09:41:19 +0530
add template columns to make edits and rather than providing a button for
updating each row...make a button which updates the  all changed rows
depending upon the version like datarowversion.current or changed..

Regards
Rohit Arora
Intersolutions (P) Ltd
B - 21, Sector 58,
Noida - 201301
Tel : 91-2585703/04/05 Extn: 229


-----Original Message-----
From: Jerry Lanphear [mailto:jerrylan@q...]
Sent: Monday, February 17, 2003 12:39 AM
To: aspx_beginners
Subject: [aspx_beginners] Re: editable datagrid: all rows in edit mode?


When you use ADO.NET and SQL to perform a select of desired rows in a table
using a DataAdapter and set the datasource on the datagrid to that
collection you have access to all the rows and columns.  Of course you can
configure the datagrid to give access to only certain fields or rows.  When
you perform an update on the data the original data source is updated.

Regards
----- Original Message -----
From: "Sam" <samasp@d...>
To: "aspx_beginners" <aspx_beginners@p...>
Sent: Sunday, February 16, 2003 5:54 PM
Subject: [aspx_beginners] editable datagrid: all rows in edit mode?


> Hello,
>
> I have the following question about an editable datagrid:
>
> Normally, you have one editable row in your datagrid.  But what I need is
> a grid (filled with data from a database) where all rows are in edit mode
> at the same time, so that the user can edit all the rows at once (like you
> are editing data in Excel, for example).
>
> I don't think this is possible with the default asp.net datagrid.  If not,
> are there other third-party datagrid controls where this is possable?
>
> Thanks in advance.
>
> Kind regards,
>
> Sam Schotte
> Belgium
>
>
>
>




  Return to Index