RadioButtonList is a table? Why? Can I change that?

  • Thread starter Thread starter darrel
  • Start date Start date
D

darrel

I'm using a RadioButtonList so I can easily bind some data to it.

This works nicely. However, the HTML it spits out is a TABLE. I can't figure
out why I need a table for a simple radio button list. Is there a way to
make it NOT be a table? Or do I need to do this with a custom repeater
control?

-Darrel
 
Hi,

change the RepeatLayout attribute/property of the RadioButtonList to 'Flow',
the default is 'Table'.
 
change the RepeatLayout attribute/property of the RadioButtonList to
'Flow',
the default is 'Table'.

Ah! Cool...that is good to know!

In the end, my radio list had to be more complicated and I just used a
repeater control. I'm finding that that is usually the answer to most of my
problems. ;o)

-Darrel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top