checkbox inside listbox
checkbox inside listbox
Out of context: Reply #3
- Started
- Last post
- 8 Responses
- mitsu0
not off hand, and short of time to write an example, unfortunatley.
just use javascript to change the caption of the selected listbox and php/asp/etc to do the same when the page loads.
something like this for the js:
for(x=0;x<form1.listbox.options...
{
if(form1.listbox.options.selecte...
{
//update caption of this option
}
}