[jQuery] Re: saving values from a multi select list.

2009-09-15 Thread shaded
With Pleasure. === first post Im using a plugin called selectchain by Remy Sharp and modified it a bit. Right now im trying to pass only selected values of a multi select list through ajax. The fo

[jQuery] Re: saving values from a multi select list.

2009-09-15 Thread Rick Faircloth
y] Re: saving values from a multi select list. Still stuck on this.no one has even a suggestion as to what maybe wrong?

[jQuery] Re: saving values from a multi select list.

2009-09-15 Thread shaded
Still stuck on this.no one has even a suggestion as to what maybe wrong?

[jQuery] Re: saving values from a multi select list.

2009-09-14 Thread shaded
Ok so i thought that maybe the problem had something to do with the ajax request so i tried adding the ajaxStart function. See below. $("#ddl_customer").change(function(){ $("#ddl_customer").ajaxStart(function() { cuslist = $(this).val().join(", "); }); alert(cuslist); }); $("#ddl_c

[jQuery] Re: saving values from a multi select list.

2009-09-10 Thread shaded
Thanks for the reply. I'm not really too concerned about html and how its displayed right now. I'm just concerned that its not passing the right data to the ajax call. It's also part of a much larger mvc type program so its hard to show html. this is what the html for the drop down list looks lik

[jQuery] Re: saving values from a multi select list.

2009-09-10 Thread MorningZ
Have some HTML to show with that? there is no reason why ".val()" would not bring back what it is supposed to: an array of values from selected unless you were using it wrong, your selectors are wrong, or your HTML is wrong So show more code and it'll be easier for others to help you :-)