/// <summary>Deselect a node.</summary> /// <param name="node">The node to unselect</param> /// <returns></returns> public extern virtual void unselect(TreeNode node);
/// <summary>Returns true if the node is selected</summary> /// <param name="node">The node to check</param> /// <returns>Boolean</returns> public extern virtual void isSelected(TreeNode node);
public Array getChecked(string attribute, TreeNode startNode) { throw new Exception(); }
/// <summary> /// Filter the data by a specific attribute. /// should start with or a RegExp to test against the attribute /// </summary> /// <param name="value">Either string that the attribute value</param> /// <param name="attr">(optional) The attribute passed in your node's attributes collection. Defaults to "text".</param> /// <param name="startNode">(optional) The node to start the filter at.</param> /// <returns></returns> public extern virtual void filter(object value, string attr, TreeNode startNode);
public void load(TreeNode node) { throw new Exception(); }
public void load(TreeNode node, JsAction callback, object Object) { throw new Exception(); }
public void unselect(TreeNode node) { throw new Exception(); }
public void filter(string value, string attr, TreeNode startNode) { throw new Exception(); }
public TreeNode select(TreeNode node, EventObject e) { throw new Exception(); }
public TreeNode select(TreeNode node, EventObject e, bool keepExisting) { throw new Exception(); }
public TreeNode select(TreeNode node) { throw new Exception(); }
public bool isSelected(TreeNode node) { throw new Exception(); }
public void unselect(TreeNode node, bool silent) { throw new Exception(); }
/// <summary>Select a node.</summary> /// <param name="node">The node to select</param> /// <param name="e">(optional) An event associated with the selection</param> /// <param name="keepExisting">True to retain existing selections</param> /// <returns>TreeNode</returns> public extern virtual void select(TreeNode node, EventObject e, bool keepExisting);
/// <summary>Select a node.</summary> /// <param name="node">The node to select</param> /// <param name="e">(optional) An event associated with the selection</param> /// <returns>TreeNode</returns> public extern virtual void select(TreeNode node, EventObject e);