Checkbox in Datagrid

  • Thread starter Thread starter Simon
  • Start date Start date
S

Simon

Hi Guys,

I'm trying to use a checkbox control in a datagrid. The
objective is to display readonly Customers from a
database, then allow a user to select customers with the
checkbox. Then, iterate through the dataset extracting
the primary key fields and submitting them to a stored
procedure that will produce a report.

I have managed to setup the checkbox in the datagrid. I
cannot iterate through the checkboxes. How can I do this?

Many thanks,
Simon.
 
Hi,
To keep it simple, U can add a dummy column with
Datatype as boolean to the underlying datasource
(DataTable)

Regards
Mahesh
 
Back
Top