dropdown with checkboxes

D

dana lees

Hello,

I need to use a dropdown list with checkboxes in each row.
Is there such thing?

Thank you,
Dana
 
A

agapeton

Not on the web... Web technology is controlled by the W3C and this is
not something they authorized. If you you are doing Intranet stuff,
you can definately look into XAML web application in WPF. I can
imagine it doing that...
 
N

neilmcguigan

you'd have to create your own control, or find one like that

it would be a composite control, something like this:

<div>selected value</div><img "image that looks like drop down button"
/>
<div>
<div><input type="checkbox" name="cb1" value="1" />1</div>
....
</div>

you'd need some DHTML to do the work on the client side.
 

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

Top