I am trying to use modal form dialog example from http://jqueryui.com/demos/dialog/#modal-form.
I have 3 values on the form; group, module, sort. The example works great if you have simple input variables but how do you pass back an array of values? For instance, group is multilingual so the input tag is something like name="group[1'], name="group[2]" and so on. example: <div><label for="group[1]">Group Name:</label><input type="text" name="group[1]" id="group[1]" /></div> All I need is to pass the array into buttons: $("#dialog").dialog ({ { 'Save': function() { }) so that I can post it to my php file. Any help is greatly appreciated. I am very good with PHP but new to jQuery.
-- You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery...@googlegroups.com. To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.