Passing events into a Backgrid view
I am using Backbonejs and Backgrid and would like to set up an event listener inside the Backgrid view to catch events triggered in another view. The event would call a function to clear the currently checked tickbox. I am using the basic event aggregator concept from Derick Bailey's excellent article on passing events between views.
I am stuck at two points:
1) Successfully passing the event into the Backgrid view.
2) Determining which tickbox is checked in order to clear it.
My Backgrid column code is as follows:
window.ShowCollectionView = Backbone.View.extend({
template: _.template($('#CollectionTemplate3').html()),
initialize: function(options) {
var isTickBoxSelected = false;
// Tie the method uncheckTickBox() to the view and not the aggregator.
_.bindAll(this, "uncheckTickBox");
options.vent.bind("uncheckTickBox", this.uncheckTickBox);
var columns = [
{
name: '',
label: 'Select',
cell: Backgrid.BooleanCell.extend({
events : {
'change': function(ev){
var $checkbox = $(ev.target);
var $checkboxes = $('.backgrid input[type=checkbox]');
if($checkbox.is(':checked')) {
$checkboxes.attr("disabled", true);
isTickBoxSelected = true;
// Disable all checkboxes but this one
$checkbox.removeAttr("disabled");
console.log("Box now checked");
} else {
// Enable all checkboxes again
$checkboxes.removeAttr("disabled");
isTickBoxSelected = false;
console.log("Box now UNchecked");
}
}
}
})
}, {
name: "id", // The key of the model attribute
label: "ID", // The name to display in the header
editable: false, // By default every cell in a column is editable
cell: "string"
}, {
name: "last_name",
label: "Surname",
editable: false, // Display only!
cell: "string" // This is converted to "StringCell" and a corresponding class in the Backgrid package namespace is looked up
}];
<more code here>
// Set up a grid view to use the pageable collection
var userGrid = new Backgrid.Grid({
vent: vent,
columns: columns,
collection: userCollection
});
backbone.js event-handling backgrid
add a comment |
I am using Backbonejs and Backgrid and would like to set up an event listener inside the Backgrid view to catch events triggered in another view. The event would call a function to clear the currently checked tickbox. I am using the basic event aggregator concept from Derick Bailey's excellent article on passing events between views.
I am stuck at two points:
1) Successfully passing the event into the Backgrid view.
2) Determining which tickbox is checked in order to clear it.
My Backgrid column code is as follows:
window.ShowCollectionView = Backbone.View.extend({
template: _.template($('#CollectionTemplate3').html()),
initialize: function(options) {
var isTickBoxSelected = false;
// Tie the method uncheckTickBox() to the view and not the aggregator.
_.bindAll(this, "uncheckTickBox");
options.vent.bind("uncheckTickBox", this.uncheckTickBox);
var columns = [
{
name: '',
label: 'Select',
cell: Backgrid.BooleanCell.extend({
events : {
'change': function(ev){
var $checkbox = $(ev.target);
var $checkboxes = $('.backgrid input[type=checkbox]');
if($checkbox.is(':checked')) {
$checkboxes.attr("disabled", true);
isTickBoxSelected = true;
// Disable all checkboxes but this one
$checkbox.removeAttr("disabled");
console.log("Box now checked");
} else {
// Enable all checkboxes again
$checkboxes.removeAttr("disabled");
isTickBoxSelected = false;
console.log("Box now UNchecked");
}
}
}
})
}, {
name: "id", // The key of the model attribute
label: "ID", // The name to display in the header
editable: false, // By default every cell in a column is editable
cell: "string"
}, {
name: "last_name",
label: "Surname",
editable: false, // Display only!
cell: "string" // This is converted to "StringCell" and a corresponding class in the Backgrid package namespace is looked up
}];
<more code here>
// Set up a grid view to use the pageable collection
var userGrid = new Backgrid.Grid({
vent: vent,
columns: columns,
collection: userCollection
});
backbone.js event-handling backgrid
add a comment |
I am using Backbonejs and Backgrid and would like to set up an event listener inside the Backgrid view to catch events triggered in another view. The event would call a function to clear the currently checked tickbox. I am using the basic event aggregator concept from Derick Bailey's excellent article on passing events between views.
I am stuck at two points:
1) Successfully passing the event into the Backgrid view.
2) Determining which tickbox is checked in order to clear it.
My Backgrid column code is as follows:
window.ShowCollectionView = Backbone.View.extend({
template: _.template($('#CollectionTemplate3').html()),
initialize: function(options) {
var isTickBoxSelected = false;
// Tie the method uncheckTickBox() to the view and not the aggregator.
_.bindAll(this, "uncheckTickBox");
options.vent.bind("uncheckTickBox", this.uncheckTickBox);
var columns = [
{
name: '',
label: 'Select',
cell: Backgrid.BooleanCell.extend({
events : {
'change': function(ev){
var $checkbox = $(ev.target);
var $checkboxes = $('.backgrid input[type=checkbox]');
if($checkbox.is(':checked')) {
$checkboxes.attr("disabled", true);
isTickBoxSelected = true;
// Disable all checkboxes but this one
$checkbox.removeAttr("disabled");
console.log("Box now checked");
} else {
// Enable all checkboxes again
$checkboxes.removeAttr("disabled");
isTickBoxSelected = false;
console.log("Box now UNchecked");
}
}
}
})
}, {
name: "id", // The key of the model attribute
label: "ID", // The name to display in the header
editable: false, // By default every cell in a column is editable
cell: "string"
}, {
name: "last_name",
label: "Surname",
editable: false, // Display only!
cell: "string" // This is converted to "StringCell" and a corresponding class in the Backgrid package namespace is looked up
}];
<more code here>
// Set up a grid view to use the pageable collection
var userGrid = new Backgrid.Grid({
vent: vent,
columns: columns,
collection: userCollection
});
backbone.js event-handling backgrid
I am using Backbonejs and Backgrid and would like to set up an event listener inside the Backgrid view to catch events triggered in another view. The event would call a function to clear the currently checked tickbox. I am using the basic event aggregator concept from Derick Bailey's excellent article on passing events between views.
I am stuck at two points:
1) Successfully passing the event into the Backgrid view.
2) Determining which tickbox is checked in order to clear it.
My Backgrid column code is as follows:
window.ShowCollectionView = Backbone.View.extend({
template: _.template($('#CollectionTemplate3').html()),
initialize: function(options) {
var isTickBoxSelected = false;
// Tie the method uncheckTickBox() to the view and not the aggregator.
_.bindAll(this, "uncheckTickBox");
options.vent.bind("uncheckTickBox", this.uncheckTickBox);
var columns = [
{
name: '',
label: 'Select',
cell: Backgrid.BooleanCell.extend({
events : {
'change': function(ev){
var $checkbox = $(ev.target);
var $checkboxes = $('.backgrid input[type=checkbox]');
if($checkbox.is(':checked')) {
$checkboxes.attr("disabled", true);
isTickBoxSelected = true;
// Disable all checkboxes but this one
$checkbox.removeAttr("disabled");
console.log("Box now checked");
} else {
// Enable all checkboxes again
$checkboxes.removeAttr("disabled");
isTickBoxSelected = false;
console.log("Box now UNchecked");
}
}
}
})
}, {
name: "id", // The key of the model attribute
label: "ID", // The name to display in the header
editable: false, // By default every cell in a column is editable
cell: "string"
}, {
name: "last_name",
label: "Surname",
editable: false, // Display only!
cell: "string" // This is converted to "StringCell" and a corresponding class in the Backgrid package namespace is looked up
}];
<more code here>
// Set up a grid view to use the pageable collection
var userGrid = new Backgrid.Grid({
vent: vent,
columns: columns,
collection: userCollection
});
backbone.js event-handling backgrid
backbone.js event-handling backgrid
asked Nov 21 '18 at 20:28
Not a machineNot a machine
1138
1138
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I was able to solve this by creating a method such as follows:
uncheckTickBox: function(){
var $allcheckboxes = $('.backgrid input[type=checkbox]');
var $tickedcheckbox = $('.backgrid input[type=checkbox]:checked');
// Uncheck ticked box
$tickedcheckbox.prop("checked", false);
// Enable all checkboxes again
$allcheckboxes.removeAttr("disabled");
}
It isn't perfect as the event lives in the view hosting the grid (parent view) and not in the grid itself. However, it works well and the trigger and listener are still nicely decoupled thanks to the event aggregator.
I may try to improve it by caching the checkbox selector when the grid is created and using it to reset all the checkboxes.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420015%2fpassing-events-into-a-backgrid-view%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I was able to solve this by creating a method such as follows:
uncheckTickBox: function(){
var $allcheckboxes = $('.backgrid input[type=checkbox]');
var $tickedcheckbox = $('.backgrid input[type=checkbox]:checked');
// Uncheck ticked box
$tickedcheckbox.prop("checked", false);
// Enable all checkboxes again
$allcheckboxes.removeAttr("disabled");
}
It isn't perfect as the event lives in the view hosting the grid (parent view) and not in the grid itself. However, it works well and the trigger and listener are still nicely decoupled thanks to the event aggregator.
I may try to improve it by caching the checkbox selector when the grid is created and using it to reset all the checkboxes.
add a comment |
I was able to solve this by creating a method such as follows:
uncheckTickBox: function(){
var $allcheckboxes = $('.backgrid input[type=checkbox]');
var $tickedcheckbox = $('.backgrid input[type=checkbox]:checked');
// Uncheck ticked box
$tickedcheckbox.prop("checked", false);
// Enable all checkboxes again
$allcheckboxes.removeAttr("disabled");
}
It isn't perfect as the event lives in the view hosting the grid (parent view) and not in the grid itself. However, it works well and the trigger and listener are still nicely decoupled thanks to the event aggregator.
I may try to improve it by caching the checkbox selector when the grid is created and using it to reset all the checkboxes.
add a comment |
I was able to solve this by creating a method such as follows:
uncheckTickBox: function(){
var $allcheckboxes = $('.backgrid input[type=checkbox]');
var $tickedcheckbox = $('.backgrid input[type=checkbox]:checked');
// Uncheck ticked box
$tickedcheckbox.prop("checked", false);
// Enable all checkboxes again
$allcheckboxes.removeAttr("disabled");
}
It isn't perfect as the event lives in the view hosting the grid (parent view) and not in the grid itself. However, it works well and the trigger and listener are still nicely decoupled thanks to the event aggregator.
I may try to improve it by caching the checkbox selector when the grid is created and using it to reset all the checkboxes.
I was able to solve this by creating a method such as follows:
uncheckTickBox: function(){
var $allcheckboxes = $('.backgrid input[type=checkbox]');
var $tickedcheckbox = $('.backgrid input[type=checkbox]:checked');
// Uncheck ticked box
$tickedcheckbox.prop("checked", false);
// Enable all checkboxes again
$allcheckboxes.removeAttr("disabled");
}
It isn't perfect as the event lives in the view hosting the grid (parent view) and not in the grid itself. However, it works well and the trigger and listener are still nicely decoupled thanks to the event aggregator.
I may try to improve it by caching the checkbox selector when the grid is created and using it to reset all the checkboxes.
edited Nov 26 '18 at 1:20
answered Nov 22 '18 at 15:16
Not a machineNot a machine
1138
1138
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420015%2fpassing-events-into-a-backgrid-view%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown