1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-26 11:59:02 +02:00

enable checking of child checkboxes

This commit is contained in:
Andrew Dolgov 2011-11-10 16:16:38 +04:00
parent 227cdb7222
commit bd4dfcae6e

View File

@ -57,11 +57,12 @@ dojo.declare( "lib.CheckBoxStoreModel", dijit.tree.TreeStoreModel,
// example:
// | model.updateCheckboxState(item, true);
//
this._setCheckboxState( storeItem, newState );
if( this.checkboxStrict ) {
//if( this.checkboxStrict ) { I don't need all this 1-1 stuff, only parent -> child (fox)
this._updateChildCheckbox( storeItem, newState );
this._updateParentCheckbox( storeItem, newState );
}
//this._updateParentCheckbox( storeItem, newState );
//}
},
setAllChecked: function(checked) {
var items = this.store._arrayOfAllItems;
@ -189,6 +190,7 @@ dojo.declare( "lib.CheckBoxStoreModel", dijit.tree.TreeStoreModel,
// newState:
// The new state of the checkbox: true or false
//
if( this.mayHaveChildren( parentItem )) {
this.getChildren( parentItem, dojo.hitch( this,
function( children ) {