Add an unbound column

ultraman

Well-known member
Joined
Dec 31, 1969
Messages
138
Location
Quebec, Canada
Hi again !

Is there an EASY way to add a unbound column to a bound DataGrid ? The only sample I found was in C# and looks quite complicated for this simple thing.
 
Just a little more precision on what Im trying to do here. I want to get values for column 0 from a table, and add another column (1) that is editable. For exemple, you would have all provinces (or states) in the first col and you have to fill the numbers for each one. Is there a way to set an entire column editable ???
 
Steps to create a Unbound Column:

1. Create a dummy data table with columns.
2. Add the data into the datatable by interating thro the SQL query.
3. Add the datatable to the dataset.

This is the steps i follow for creating a unbound column for DataGrid in Application. I think the same should apply for ASP.NET.
 
Back
Top