How to add Radio buttons to datagrid

  • Thread starter Thread starter David Kleyman
  • Start date Start date
D

David Kleyman

Hello

Is there a way to add a radio button as a bound column to a datagrid? I can
not find any info on how to do that
If you have a sample of the code that does it please share

Thank you

David
 
You'll need to convert your Bound column into a Template column. Then you
can add whatever controls to the column you'd like. That's the difference
between bound and template columns, bound columns can only contain the bound
data and template columns can contain whatever you want.
 
Back
Top