jquery-datalink
jquery-datalink copied to clipboard
A data linking plugin for jQuery.
match <linput name="my[name]" value="x"/> to {my: {name: 'x'}} It can manage multi level: <input name="my[first][name]" value="x"/> => {my: first: {name: 'x'}}}
Added double quotes to 'name' and 'id' attribute selectors for reverse mapping (object -to-> form field) This enabled me to use characters like ']' and '[' in the form element...
Hi, since i needed it for one of my projects I extended the current functionality to also be able to handle non input fields (read only that is). Its a...
simple repro: var fooData = [{ name: "a" }, { name: "b" }, { name: "c"}]; $("#foobody").link(fooData, $.template("#footemp")); then call this again: $("#foobody").link(fooData, $.template("#footemp")); Then try to get the dom...
The current version is not able to link from object to form fields, when using a '.' in a field name as ASP.NET MVC does by default when having hierarchical...
After calling something like: $("input", row).link(rowData); The rowData object will get a member like jQuery15109948021615406466 which points to an object. I believe this object is used to manage the link....
When a user enters data into a datalink'd form and uses IE's AutoComplete feature to fill in the input, no change event is fired (i.e. handler and handlerRev is not...
Using jQuery 1.5.1 I encountered an issue with data link when my input names had dots inside the name. The exception that Chrome was throwing was from sizzle 'Uncaught Syntax...
Hi, I seem to have a hard time getting non-form-fields such as and linked up. The documentation vaguely states that it is possible but all the examples are targeting forms...
When linking a field with a radio group, after selecting an item the value of all radios in that same radio group change to the same value as the radio...