Skip to content

Boolean attributes now sync properly for radio buttons and checkboxes. #148

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions vendor/assets/javascripts/backbone_datalink.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,29 @@
(function($) {
$.fn.isCheckable = function() {
return ["checkbox", "radio"].indexOf(this.attr("type")) >= 0;
};
return $.extend($.fn, {
backboneLink: function(model) {
return $(this).find(":input").each(function() {
var el, name;
el = $(this);
name = el.attr("name");
model.bind("change:" + name, function() {
return el.val(model.get(name));
if (el.isCheckable()) {
return el.prop("checked", model.get(name));
} else {
return el.val(model.get(name));
}
});
return $(this).bind("change", function() {
var attrs;
el = $(this);
attrs = {};
attrs[el.attr("name")] = el.val();
if (el.isCheckable()) {
attrs[el.attr("name")] = el.is(":checked");
} else {
attrs[el.attr("name")] = el.val();
}
return model.set(attrs);
});
});
Expand Down