0

I have a Grid in my panel. I want to add Radio on the grid as a Column, but am not quite sure how to do it. Please tell me how can I have a Radio button column config.

I tried to search in google, but found no solution over it. Any help is appreciated :)

iAmSavy
  • 107
  • 1
  • 9

1 Answers1

0

You can build a custom cell that renders as

<input type="radio" name="group" value="" />

This is a tutorial on building custom cells:

https://developers.google.com/web-toolkit/doc/latest/DevGuideUiCustomCells

Andrei Volgin
  • 40,755
  • 6
  • 49
  • 58