radio button within listbox

X

xevi.matavacas

I'm quite sure that in raw html it's impossible. But there's a way to
do so:

You must create a "self control" in html that is a textbox and an image
(an arrow) to simulate a combobox. When the image is clicked then you
must show a popup (window.createPopup or a div that you show/hide) with
the elements you want to show inside. Inside the popup you can have
radiobuttons, or wathever you want.

It's not a easy work, but if you do this control the right way, you can
reuse several times and customize it.
 
K

kiranmn75

You can achieve that using div. Specify some height to the div and set
its overflow property to auto, which will make the div scrollable.

Demo code:

<div style="height:150px; width: 150px; overflow:auto; background:
#e5e5e5; padding:3px;">
<input type="radio" value="" name="r1" > Option 1<br>
<input type="radio" value="" name="r1" > Option 2<br>
<input type="radio" value="" name="r1" > Option 3<br>
<input type="radio" value="" name="r1" > Option 4<br>
<input type="radio" value="" name="r1" > Option 5<br>
<input type="radio" value="" name="r1" > Option 6<br>
<input type="radio" value="" name="r1" > Option 7<br>
<input type="radio" value="" name="r1" > Option 8<br>
<input type="radio" value="" name="r1" > Option 9<br>
<input type="radio" value="" name="r1" > Option 10<br>
<input type="radio" value="" name="r1" > Option 11<br>
<input type="radio" value="" name="r1" > Option 12<br>
<input type="radio" value="" name="r1" > Option 13<br>
<input type="radio" value="" name="r1" > Option 14<br>
<input type="radio" value="" name="r1" > Option 15<br>
</div>

cheers
Kiran M N
 

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

Members online

Forum statistics

Threads
473,731
Messages
2,569,432
Members
44,832
Latest member
GlennSmall

Latest Threads

Top