I have a select option, in HTML It is empty like this:
<select id="myselect" name="selector"><option/></select>
After page load I make ajax request and finish loading the selector with
additional option(s).
So I might have:
<select id="myselect" name="selector">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
I have registered an event to handle a submit click for the form and pass
the value to the click handler event like this:
$('paging').down('input.previous').observe('click',
_msoS.handlePagingSubmit.bindAsEventListener(_msoS, $F('myselect')));
The value passed to my click handler for myselect is NULL but indeed the
first option is selected.
Whats wrong?
--
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en.