If I had to guess, I'd say that when you serialize the data (using
PHP) that you need to set the name to the actual name of the form
field.
So instead of:
rel_doc_id:["30", "31", "288"]
You would do:
"rel_doc_id[]":["30", "31", "288"]
Since the deserialize plugin currently can't infer the weird PHP
syntax, it's possible that you might have to roll it yourself.
--John
On 1/26/07, Snook <[EMAIL PROTECTED]> wrote:
>
> BTW-- I'm still waiting a reply!
>
> I did hack a solution for the time being:
>
> $("form select").attr("name", $("form select").attr("id"));
> alert($(FormContainer + " form select").attr("name"));
> $("form").deserialize(json.record);
> $("form select").attr("name", $("form select").attr("id") + '[]');
>
>
> --
> View this message in context:
> http://www.nabble.com/Deserialize-plugin-and-PHP-mulitiselect-format-problem-tf3124015.html#a8657072
> Sent from the JQuery mailing list archive at Nabble.com.
>
>
> _______________________________________________
> jQuery mailing list
> [email protected]
> http://jquery.com/discuss/
>
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/