UIZE JavaScript Framework

MODULES Uize.Widget.CollectionItem

1. Introduction

The Uize.Widget.CollectionItem widget class manages state for an item that is intended to be one of many items owned by a collection widget instance.

DEVELOPERS: Chris van Rensburg, Jan Borgersen

1.1. In a Nutshell

The Uize.Widget.CollectionItem class implements and manages the user interface for an item in a collection and is intended to be used in conjunction with the Uize.Widget.Collection class (or subclass).

Some examples of collection items would be...

search results in a search results grid
movies in a queue of pending movie rentals
books in a list of book recommendations, in order of ratings score

1.2. Examples

There are no dedicated showcase example pages for the Uize.Widget.CollectionItem module.

SEARCH FOR EXAMPLES

Use the link below to search for example pages on the UIZE Web site that reference the Uize.Widget.CollectionItem module...

SEARCH

1.3. Implementation Info

The Uize.Widget.CollectionItem module defines the Uize.Widget.CollectionItem class, which is a subclass of Uize.Widget.

INHERITANCE CHAIN

Uize.Class −> Uize.Widget −> Uize.Widget.CollectionItem

1.3.1. Features Introduced in This Module

The features listed in this section have been introduced in this module.

INSTANCE METHODS

addChildButton

INSTANCE PROPERTIES

isCollectionItem

STATE PROPERTIES

cssClassActive | cssClassBase | cssClassImage | cssClassImageOver | cssClassOver | locked | over | previewClickAction | previewTooltip | properties | selected | title

1.3.2. Features Overridden in This Module

The features listed in this section have been overridden in this module.

The module that an overridden feature was initially introduced in will be noted in the IMPLEMENTATION INFO notes for the feature.

INSTANCE METHODS

updateUi | valueOf | wireUi

STATIC PROPERTIES

Uize.Widget.CollectionItem.moduleName | Uize.Widget.CollectionItem.nonInheritableStatics | Uize.Widget.CollectionItem.undefined

1.3.3. Features Inherited From Other Modules

The features listed in this section have been inherited from other modules.

The module that an inherited feature was initially introduced in will be noted in the IMPLEMENTATION INFO notes for the feature.

INSTANCE METHODS

addChild | addChildren | ajax | buildHtml | callInherited | childHtml | childId | confirm | displayNode | fire | flushNodeCache | get | getContainer | getHtml | getInherited | getNode | getNodeStyle | getNodeValue | getProvider | globalizeNode | inform | injectNodeHtml | insertOrWireUi | insertUi | is | isMet | kill | localize | met | nodeId | onChange | once | removeChild | removeNode | removeUi | set | setInherited | setNodeClipRect | setNodeInnerHtml | setNodeOpacity | setNodeProperties | setNodeStyle | setNodeValue | showNode | toggle | unmet | unwire | unwireNode | unwireNodeEventsByMatch | unwireUi | whenever | wire | wireNode

INSTANCE PROPERTIES

showConfirm | showInform

STATE PROPERTIES

built | busy | busyInherited | busyParentTickle | children | container | enabled | enabledInherited | enabledParentTickle | html | idPrefix | idPrefixConstruction | insertionMode | localized | name | nodeMap | parent | wired

STATIC METHODS

Uize.Widget.CollectionItem.alphastructor | Uize.Widget.CollectionItem.declare | Uize.Widget.CollectionItem.doMy | Uize.Widget.CollectionItem.dualContextMethods | Uize.Widget.CollectionItem.dualContextProperties | Uize.Widget.CollectionItem.fire | Uize.Widget.CollectionItem.get | Uize.Widget.CollectionItem.getBlankImageUrl | Uize.Widget.CollectionItem.instanceMethods | Uize.Widget.CollectionItem.instanceProperties | Uize.Widget.CollectionItem.mixins | Uize.Widget.CollectionItem.omegastructor | Uize.Widget.CollectionItem.set | Uize.Widget.CollectionItem.singleton | Uize.Widget.CollectionItem.spawn | Uize.Widget.CollectionItem.stateProperties | Uize.Widget.CollectionItem.staticMethods | Uize.Widget.CollectionItem.staticProperties | Uize.Widget.CollectionItem.subclass | Uize.Widget.CollectionItem.toggle | Uize.Widget.CollectionItem.treeInheritedStateProperties | Uize.Widget.CollectionItem.unwire | Uize.Widget.CollectionItem.wire

STATIC PROPERTIES

Uize.Widget.CollectionItem.busyParentTickle | Uize.Widget.CollectionItem.enabledParentTickle | Uize.Widget.CollectionItem.isWired | Uize.Widget.CollectionItem.pathToResources

1.3.4. Modules Directly Under This Namespace

1.3.5. Unit Tests

There is no dedicated unit tests module for the Uize.Widget.CollectionItem module.

2. DOM Nodes

2.1. Root Node

The root node is the DOM node with the name '' (empty string), and is required for this widget class.

The className property of this node is updated to reflect the state of the instance's selected and over state properties. If the instance is selected (i.e. selected is true, then the className property of the node is updated to contain cssClassActive. If the instance is not selected, but the user is hovering over it (i.e. over is set to true), then the className property of the node is updated to contain cssClassOver. If both selected and over are both set to false, then the node's className property will not be updated.

NOTES

this DOM node is required

2.2. imageLink -- DEPRECATED 2009-07-28

The deprecated imageLink DOM node is an alternate / legacy name for the previewShell DOM node.

If the imageLink DOM node is used, it will behave in exactly the same way as the previewShell node. If you're writing new code, you should not use this DOM node in your HTML markup.

NOTES

this DOM node is deprecated

2.3. preview

An optional node that should provide a preview for the item that is represented by the instance, and whose className property is updated to reflect the state of the instance's over state property.

When over is set to true, the value of this node's className property will be set to the value of the cssClassImageOver state property. When over is set to false, the value of this node's className property will be set to the value of the cssClassImage state property. When either of the cssClassImage or cssClassImageOver state properties are set to null or are left undefined, then the className property of this node will not be updated.

NOTES

this DOM node is optional
in a typical implementation this DOM node will be an IMG tag, but it does not have to be

2.4. previewShell

A node that serves as a shell around the preview DOM node.

Mouseover, mouseout, and click events are wired for this node in order to manage over and selected state for the instance, and in order to fire instance events, such as the 'Click Preview', 'Click Selected', and 'Item Mouse Down' events.

NOTES

this DOM node is required, even if the optional preview DOM node is omitted

2.5. title DOM Node

An optional node whose contents will be replaced with the value of the title state property, if this property's value is not null or undefined.

The innerHTML value of the title DOM Node will be updated to reflect the value of the title state property whenever the value of this property is changed, is not null or undefined, and the instance is wired up.

NOTES

this DOM node is optional

3. Instance Events

3.1. Click Preview

An instance event that is fired when the user clicks on the previewShell DOM node and the previewClickAction state property is set to 'Preview' or null, or left undefined.

As a bubbling event, a handler for this event can be wired by an instance of the Uize.Widget.Collection class (or subclass) - that owns the collection items as child widgets - on itself. When this event is fired, the event object contains a bubble property that is set to true.

3.2. Click Selected

An instance event that is fired when the user clicks on the optional select button, or when the user clicks on the previewShell DOM node and the value of the previewClickAction state property is set to either 'Select' or 'Toggle Selected'.

When this event is fired because the user clicks on the previewShell DOM node and previewClickAction is set to 'Toggle Selected', then the event object will contain a forceToggle property that is set to true.

3.3. Item Mouse Down

A bubbling instance event that is fired when the user mouses down on the previewShell DOM node.

As a bubbling event, a handler for this event can be wired by an instance of the Uize.Widget.Collection class (or subclass) - that owns the collection items as child widgets - on itself. This is the case with the Uize.Widget.Collection.Dynamic class, which manages drag-and-drop for reordering of items in a collection.

When this event is fired, the event object contains a domEvent property that is a reference to the mousedown DOM event, and a bubble property that is set to true.

3.4. Remove

An instance event that is fired when the user clicks on the remove button of an instance.

The Uize.Widget.CollectionItem class (or subclass) is not responsible for removing the item represented by an instance. Instead, the Remove event is fired and handled by an instance of the Uize.Widget.Collection class (or subclass) that owns the collection items as child widgets. The Uize.Widget.Collection class then performs the operations necessary to update the data set for the collection of items. Also, the Uize.Widget.Collection class is responsible for deciding if just the item whose remove button was clicked should be removed, or if all currently selected items should be removed.

NOTES

see the related remove child widget

4. Child Widgets

4.1. remove

An instance of the Uize.Widget.Button class, that lets the user remove the item represented by the instance, or the current selection of items.

Clicking on this button fires the Remove instance event, with a byUser property in the event object that is set to the value true.

NOTES

the markup for this child widget is optional, and a given implementation of this widget in HTML does not need to offer a remove button
see the related Remove instance event

4.2. select

An instance of the Uize.Widget.Button class, that lets the user toggle the selected state for the instance.

NOTES

the markup for this child widget is optional, and a given implementation of this widget in HTML does not need to offer a select button

5. Instance Properties

5.1. isCollectionItem

A boolean specifying whether or not this class supports the collection item interface (not yet formally defined)

NOTES

for now, this is only used to determine if this class is indeed a CollectionItem
see the isCollectionItem method Uize.Widget.Collection

IMPLEMENTATION INFO

this feature was introduced in this module

5.2. showConfirm

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

5.3. showInform

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6. State Properties

6.1. built

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.2. busy

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.3. busyInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.4. busyParentTickle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.5. children

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.6. container

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.7. cssClassActive

A string, specifying the CSS class name that should be added to the className property of the root node when the instance is selected (i.e. the selected state property is set to true).

For a more in-depth discussion of the interaction between this property and the companion cssClassOver property, consult the reference for the root node.

NOTES

see the companion cssClassOver state property
see the related cssClassImage and cssClassImageOver state properties
the initial value is undefined

IMPLEMENTATION INFO

this feature was introduced in this module

6.8. cssClassBase

IMPLEMENTATION INFO

this feature was introduced in this module

6.9. cssClassBase -- DEPRECATED 2011-02-03

A string, specifying the base CSS class string that should be set as the className property of the root node when wiring the instance.

This state property, now deprecated, was originally used to aid in constructing the className property for the root node to reflect the selected and over states of the instance.

NOTES

This state property is deprecated
the initial value is undefined

6.10. cssClassImage

A string, specifying the value that should be set for the className property of the preview DOM node when the user is not moused over the instance (i.e. the over state property is set to false).

For a more in-depth discussion of the interaction between this property and the companion cssClassImageOver property, consult the reference for the preview DOM node.

NOTES

see the companion cssClassImageOver state property
see the related cssClassActive, cssClassBase, and cssClassOver state properties
the initial value is undefined

IMPLEMENTATION INFO

this feature was introduced in this module

6.11. cssClassImageOver

A string, specifying the value that should be set for the className property of the preview DOM node when the user mouses over the instance (i.e. the over state property is set to true).

For a more in-depth discussion of the interaction between this property and the companion cssClassImage property, consult the reference for the preview DOM node.

NOTES

see the companion cssClassImage state property
see the related cssClassActive, cssClassBase, and cssClassOver state properties
the initial value is undefined

IMPLEMENTATION INFO

this feature was introduced in this module

6.12. cssClassOver

A string, specifying the CSS class name that should be added to the className property of the root node when the user is mousing over the instance and it is not already selected (i.e. the over state property is set to true and the selected state property is set to false).

For a more in-depth discussion of the interaction between this property and the companion cssClassActive property, consult the reference for the root node.

NOTES

see the companion cssClassActive state properties
see the related cssClassImage and cssClassImageOver state properties
the initial value is undefined

IMPLEMENTATION INFO

this feature was introduced in this module

6.13. enabled

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.14. enabledInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.15. enabledParentTickle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.16. html

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.17. idPrefix

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.18. idPrefixConstruction

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.19. insertionMode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.20. localized

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.21. locked

A boolean, indicating whether or not the instance is locked.

NOTES

the initial value is false

IMPLEMENTATION INFO

this feature was introduced in this module

6.22. name

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.23. nodeMap

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.24. over

A boolean, indicating whether or not the user is mousing over the previewShell DOM node of the instance.

The value of this property is set to true when the user mouses over the instance's previewShell DOM node, and is set to false when the user mouses out.

NOTES

the initial value is false

IMPLEMENTATION INFO

this feature was introduced in this module

6.25. parent

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

6.26. previewClickAction

A string, specifying the desired action that should be performed when the previewShell DOM node is clicked.

VALUES

'Preview' - Clicking will fire a bubbling 'Click Preview' instance event.
'Select' - Clicking will select the item, clearing any existing selection.
'Toggle Selected' - Clicking will toggle the selected state of the item, not affecting any other currently selected items.
not defined - When this property is not defined or is set to the value null, false, or '' (empty string), then a bubbling 'Click Preview' instance event will be fired (i.e. defaulting to the behavior for the value 'Preview').

NOTES

the initial value is undefined

IMPLEMENTATION INFO

this feature was introduced in this module

6.27. previewTooltip

An object reference to a DOM node, or a string whose value is the id for a DOM node, that should be displayed as a tooltip for the instance when the value of the over state property changes to true and the instance is wired.

Essentially, the previewTooltip state property can be used to specify a tooltip that should appear when the user mouses over the previewShell DOM node.

NOTES

the initial value is undefined
in order for the value of this property to be honored, the Uize.Tooltip module must already be loaded, but the Uize.Widget.CollectionItem module does not explicitly require the Uize.Tooltip module

IMPLEMENTATION INFO

this feature was introduced in this module

6.28. properties

An object, acting as a "bucket" for additional data that may be associated to an instance.

The data in the properties state property is used by the getPropertyForItems and getPropertyForSelected instance methods of the Uize.Widget.Collection class. When the value of the properties state property is changed, the value of the title state property is set from the "title" property of the properties object, if it exists.

NOTES

the initial value is undefined

IMPLEMENTATION INFO

this feature was introduced in this module

6.29. selected

A boolean, indicating whether or not the instance is selected.

When the value of the selected state property changes, the selected state of the select child widget will be updated, and the CSS class of the Root Node will be updated to reflect the instance's selected state.

NOTES

the initial value is false

IMPLEMENTATION INFO

this feature was introduced in this module

6.30. title

A string, whose value will be used to set the value of the innerHTML property of the title DOM Node.

The innerHTML value of the title DOM Node will be updated to reflect the value of the title state property whenever the value of this property is changed, is not null or undefined, and the instance is wired up. When the value of the properties state property is changed, the value of the title state property is set from the "title" property of the properties object.

NOTES

the initial value is undefined

IMPLEMENTATION INFO

this feature was introduced in this module

6.31. wired

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7. Instance Methods

7.1. addChild

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.2. addChildButton

IMPLEMENTATION INFO

this feature was introduced in this module

7.3. addChildren

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.4. ajax

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.5. buildHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.6. callInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.7. childHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.8. childId

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.9. confirm

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.10. displayNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.11. fire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.12. flushNodeCache

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.13. get

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.14. getContainer

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.15. getHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.16. getInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.17. getNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.18. getNodeStyle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.19. getNodeValue

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.20. getProvider

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.21. globalizeNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.22. inform

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.23. injectNodeHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.24. insertOrWireUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.25. insertUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.26. is

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.27. isMet

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.28. kill

Inherited from Uize.Widget, but introduced in Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Class)

7.29. localize

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.30. met

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.31. nodeId

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.32. onChange

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.33. once

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.34. removeChild

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.35. removeNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.36. removeUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.37. set

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.38. setInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.39. setNodeClipRect

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.40. setNodeInnerHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.41. setNodeOpacity

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.42. setNodeProperties

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.43. setNodeStyle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.44. setNodeValue

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.45. showNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.46. toggle

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.47. unmet

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.48. unwire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.49. unwireNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.50. unwireNodeEventsByMatch

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.51. unwireUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.52. updateUi

IMPLEMENTATION INFO

this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Widget)

7.53. valueOf

this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Class)

IMPLEMENTATION INFO

7.54. whenever

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.55. wire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)

7.56. wireNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)

7.57. wireUi

IMPLEMENTATION INFO

this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Widget)

8. Static Methods

8.1. Uize.Widget.CollectionItem.alphastructor

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.2. Uize.Widget.CollectionItem.declare

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.3. Uize.Widget.CollectionItem.doMy

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.4. Uize.Widget.CollectionItem.dualContextMethods

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.5. Uize.Widget.CollectionItem.dualContextProperties

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.6. Uize.Widget.CollectionItem.fire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.7. Uize.Widget.CollectionItem.get

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.8. Uize.Widget.CollectionItem.getBlankImageUrl

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)
this static feature is inherited by subclasses

8.9. Uize.Widget.CollectionItem.instanceMethods

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.10. Uize.Widget.CollectionItem.instanceProperties

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.11. Uize.Widget.CollectionItem.mixins

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.12. Uize.Widget.CollectionItem.omegastructor

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.13. Uize.Widget.CollectionItem.set

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.14. Uize.Widget.CollectionItem.singleton

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.15. Uize.Widget.CollectionItem.spawn

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)
this static feature is inherited by subclasses

8.16. Uize.Widget.CollectionItem.stateProperties

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.17. Uize.Widget.CollectionItem.staticMethods

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.18. Uize.Widget.CollectionItem.staticProperties

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.19. Uize.Widget.CollectionItem.subclass

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.20. Uize.Widget.CollectionItem.toggle

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.21. Uize.Widget.CollectionItem.treeInheritedStateProperties

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)
this static feature is inherited by subclasses

8.22. Uize.Widget.CollectionItem.unwire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

8.23. Uize.Widget.CollectionItem.wire

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

9. Static Properties

9.1. Uize.Widget.CollectionItem.busyParentTickle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)
this static feature is inherited by subclasses

9.2. Uize.Widget.CollectionItem.enabledParentTickle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)
this static feature is inherited by subclasses

9.3. Uize.Widget.CollectionItem.isWired

Inherited from Uize.Widget.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Widget, first introduced in Uize.Widget)
this static feature is inherited by subclasses

9.4. Uize.Widget.CollectionItem.moduleName

IMPLEMENTATION INFO

this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Class)
this static feature is inherited by subclasses

9.5. Uize.Widget.CollectionItem.nonInheritableStatics

IMPLEMENTATION INFO

this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Class)
this static feature is not inherited by subclasses

9.6. Uize.Widget.CollectionItem.pathToResources

Inherited from Uize.Class.

IMPLEMENTATION INFO

this is an inherited feature (implementation is in Uize.Class, first introduced in Uize.Class)
this static feature is inherited by subclasses

9.7. Uize.Widget.CollectionItem.undefined

IMPLEMENTATION INFO

this is an override of an inherited feature (implementation is in this module, first introduced in Uize.Widget)
this static feature is inherited by subclasses