datagrid generate rows

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have this checkbox list and a datagrid.
I would like to generate a row with textboxes for every item that is checked
in my checkboxlist

What's the best way to do it?

in javascript is (quite) easy but in C#?
 
You are going to need to create the row in the underlying data source
(usually a DataSet?) and re-bind the datagrid after adding the new row(s).

There are some good tutorials on datagrids in the online help for Visual
Studio, and at http://msdn.microsoft.com which can help you understand how
to do this.
 
Back
Top