mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-16 11:38:02 +02:00
* Mail: fixed sometimes not working (un)subscribe of mailboxes, added better diagnostic and automatic (de)select children
This commit is contained in:
@ -818,6 +818,19 @@ var et2_tree = et2_inputWidget.extend(
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Set state of node incl. it's children
|
||||
*
|
||||
* @param {string} _id id of node
|
||||
* @param {boolean|string} _state or "toggle" to toggle state
|
||||
*/
|
||||
setSubChecked: function(_id, _state)
|
||||
{
|
||||
if (_state === "toggle") _state = !this.input.isItemChecked(_id);
|
||||
|
||||
this.input.setSubChecked(_id, _state);
|
||||
},
|
||||
|
||||
/**
|
||||
* Get URL relative to image_path option
|
||||
*
|
||||
|
Reference in New Issue
Block a user