Print Friendly

Class Ext.tree.MultiSelectionModel

Package:Ext.tree
Class:MultiSelectionModel
Extends:Observable
Defined In:TreeSelectionModel.js
Multi selection for a TreePanel.

Properties   -  Methods   -  Events

Public Properties

This class has no public properties.

Public Methods

Method Defined By
  addEvents(Object object) : void Observable
Copies any events from the passed object onto this object if they do not already exist. The passed object must also ...
  addListener(String eventName, Function handler, [Object options]) : void Observable
Appends an event handler to this component
  clearSelections() : void MultiSelectionModel
Clear all selections
  fireEvent(String eventName, Object... args) : Boolean Observable
Fires the specified event with the passed parameters (minus the event name).
  getSelectedNodes() : Array MultiSelectionModel
Returns an array of the selected nodes
  hasListener(String eventName) : Boolean Observable
Checks to see if this object is currently listening for a specified event
  isSelected(TreeNode node) : Boolean MultiSelectionModel
Returns true if the node is selected
  on(String eventName, Function handler, [Object options]) : void Observable
Appends an event handler to this element (shorthand for addListener)
  purgeListeners() : void Observable
Removes all listeners for this object
  removeListener(String eventName, Function handler, [Object scope]) : void Observable
Removes a listener
  select(TreeNode node, [EventObject e], Boolean keepExisting) : TreeNode MultiSelectionModel
Select a node.
  un(String eventName, Function handler, [Object scope]) : void Observable
Removes a listener (shorthand for removeListener)
  unselect(TreeNode node) : void MultiSelectionModel
Deselect a node.

Public Events

Event Defined By
  selectionchange : (MultiSelectionModel this, Array nodes) MultiSelectionModel
Fires when the selected nodes change

Method Details

addEvents

public function addEvents(Object object)
Copies any events from the passed object onto this object if they do not already exist. The passed object must also inherit from Observable for this method to have any effect.
Parameters:
  • object : Object
    The object from which to copy events
Returns:
  • void
This method is defined by Observable.

addListener

public function addListener(String eventName, Function handler, [Object options])
Appends an event handler to this component
Parameters:
  • eventName : String
    The type of event to listen for
  • handler : Function
    The method the event invokes
  • options : Object
    (optional)
Returns:
  • void
This method is defined by Observable.

clearSelections

public function clearSelections()
Clear all selections
Parameters:
  • None.
Returns:
  • void
This method is defined by MultiSelectionModel.

fireEvent

public function fireEvent(String eventName, Object... args)
Fires the specified event with the passed parameters (minus the event name).
Parameters:
  • eventName : String
  • args : Object...
    Variable number of parameters are passed to handlers
Returns:
  • Boolean
    returns false if any of the handlers return false otherwise it returns true
This method is defined by Observable.

getSelectedNodes

public function getSelectedNodes()
Returns an array of the selected nodes
Parameters:
  • None.
Returns:
  • Array
This method is defined by MultiSelectionModel.

hasListener

public function hasListener(String eventName)
Checks to see if this object is currently listening for a specified event
Parameters:
  • eventName : String
    The name of the event to check for
Returns:
  • Boolean
    True if the event is being listened for, else false
This method is defined by Observable.

isSelected

public function isSelected(TreeNode node)
Returns true if the node is selected
Parameters:
  • node : TreeNode
    The node to check
Returns:
  • Boolean
This method is defined by MultiSelectionModel.

on

public function on(String eventName, Function handler, [Object options])
Appends an event handler to this element (shorthand for addListener)
Parameters:
  • eventName : String
    The type of event to listen for
  • handler : Function
    The method the event invokes
  • options : Object
    (optional)
Returns:
  • void
This method is defined by Observable.

purgeListeners

public function purgeListeners()
Removes all listeners for this object
Parameters:
  • None.
Returns:
  • void
This method is defined by Observable.

removeListener

public function removeListener(String eventName, Function handler, [Object scope])
Removes a listener
Parameters:
  • eventName : String
    The type of event to listen for
  • handler : Function
    The handler to remove
  • scope : Object
    (optional) The scope (this object) for the handler
Returns:
  • void
This method is defined by Observable.

select

public function select(TreeNode node, [EventObject e], Boolean keepExisting)
Select a node.
Parameters:
  • node : TreeNode
    The node to select
  • e : EventObject
    (optional) An event associated with the selection
  • keepExisting : Boolean
    True to retain existing selections
Returns:
  • TreeNode
    The selected node
This method is defined by MultiSelectionModel.

un

public function un(String eventName, Function handler, [Object scope])
Removes a listener (shorthand for removeListener)
Parameters:
  • eventName : String
    The type of event to listen for
  • handler : Function
    The handler to remove
  • scope : Object
    (optional) The scope (this object) for the handler
Returns:
  • void
This method is defined by Observable.

unselect

public function unselect(TreeNode node)
Deselect a node.
Parameters:
  • node : TreeNode
    The node to unselect
Returns:
  • void
This method is defined by MultiSelectionModel.

Event Details

selectionchange

public event selectionchange
Fires when the selected nodes change
Subscribers will be called with the following parameters:
  • this : MultiSelectionModel
  • nodes : Array
    Array of the selected nodes
This event is defined by MultiSelectionModel.

Ext - Copyright © 2006-2007 Ext JS, LLC
All rights reserved.