/// <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);
Example #3
0
 public Array getChecked(string attribute, TreeNode startNode) { throw new Exception(); }
Example #4
0
		/// <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);
Example #5
0
 public void load(TreeNode node) { throw new Exception(); }
Example #6
0
 public void load(TreeNode node, JsAction callback, object Object) { throw new Exception(); }
Example #7
0
 public void unselect(TreeNode node) { throw new Exception(); }
Example #8
0
 public void filter(string value, string attr, TreeNode startNode) { throw new Exception(); }
Example #9
0
 public TreeNode select(TreeNode node, EventObject e) { throw new Exception(); }
Example #10
0
 public TreeNode select(TreeNode node, EventObject e, bool keepExisting) { throw new Exception(); }
Example #11
0
 public TreeNode select(TreeNode node) { throw new Exception(); }
Example #12
0
 public bool isSelected(TreeNode node) { throw new Exception(); }
Example #13
0
 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);