Hello all,
I need to implement client side functionality in one form. I use HTML
Listboxes and I want the listboxes to stay as if they were disabled, only
being possible to scroll up and down to see all values, not being possible to
select the options.
Hope that is possible,
Thanks in advance
T
João Costa - 27 Apr 2005 11:40 GMT
ok I have a way:
I changed the onclick event to this:
function DisableSelect(listbox)
{
listbox.selectedIndex= -1;
}
My doubt now is how to change in realtime the onclick eventhandler of the
listbox without having to parse the outer html.
Thanks in advance!
> Hello all,
> I need to implement client side functionality in one form. I use HTML
[quoted text clipped - 6 lines]
>
> T