Adding TextBox into DataGrid

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

Guest

Hi all,

Is it possible to add a TextBox or CheckBox into DataGrid? and How? Or I
need to use Repeater instead?

Thanks for any help!

Tedmond
 
Use a TemplateColumn (call it TColumn1) and use TColumn1.Controls.Add after
you have created and configured your object (either TextBox or CheckBox).
 
Back
Top