I need a form structure to read from JSON, put the values in a multiselect field in edit form mode(not inline), and let the user set the values for the ones he selected. I dont know if its possible.
I did this and worked fine: https://stackoverflow.com/a/4985705/1052077 But I still need to associate a value to each of the selected items in the second list, like and input so the user can select the number he wants. Like "physics - 4" and then grab that number(4) to save server side.
I wanted something like this http://www.trirand.com/jqgridwiki/doku.php?id=wiki:jquery_ui_methods#column_chooser But the ones I found were only accepting the columns values, not any kind of source value.
Thanks in advance!