dropdown with checkboxes

  • Thread starter Thread starter dana lees
  • Start date Start date
D

dana lees

Hello,

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

Thank you,
Dana
 
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...
 
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.
 
Back
Top