jquery-deserialize
jquery-deserialize copied to clipboard
Decodes serialized form data and populates a form with that data.
I need to name my multiselect array like `name[]` so it get processed correctly by my API. I added support for this.
Multi Selects aren't very intuitive to use for most users (in my experience), so using multiple `select-one`s in series with the same field name is common for me. Being able...
I think you could add the following to support JSON boolean values for checkboxes. This is currently a string comparison only @~line 208 ``` // Handle select menus, checkboxes and...
If I want to deserialize an object like this one: ``` customer { customerDetails: { name: "John", id: 2 }, orderCount: 3 }` ``` Could I get it to deserialize...
If a query string contains a parameter which is not represented in a form, then elementsByName[name] is undefined, which breaks $.each function and any code that goes after deserialization will...