MODULES Uize.Widget.CollectionItem
SEARCHEXAMPLESSOURCETEST

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

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 | wireUi

STATIC PROPERTIES

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

1.3.3. Features Inherited From Other Modules

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. Child Widgets

2.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

2.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

3. Instance Events

3.1. Click Preview

An instance event that is fired when the user clicks on the previewShell implied 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 implied 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 implied 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 implied 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. Implied Nodes

4.1. Root Node

The root node is the implied 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 implied node is required

4.2. imageLink -- DEPRECATED 2009-07-28

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

If the imageLink implied 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 implied node in your HTML markup.

NOTES

this implied node is deprecated

4.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 implied node is optional
in a typical implementation this implied node will be an IMG tag, but it does not have to be

4.4. previewShell

A node that serves as a shell around the preview implied 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 implied node is required, even if the optional preview implied node is omitted

4.5. title Implied 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 Implied 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 implied node is optional

5. State Properties

5.1. built

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.2. busy

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.3. busyInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.4. children

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.5. container

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.6. 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 (ie. 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

5.7. cssClassBase

IMPLEMENTATION INFO

this feature was introduced in this module

5.8. 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

5.9. cssClassImage

A string, specifying the value that should be set for the className property of the preview implied node when the user is not moused over the instance (ie. 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 implied 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

5.10. cssClassImageOver

A string, specifying the value that should be set for the className property of the preview implied node when the user mouses over the instance (ie. 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 implied 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

5.11. 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 (ie. 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

5.12. enabled

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.13. enabledInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.14. html

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.15. idPrefix

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.16. idPrefixConstruction

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.17. insertionMode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.18. localized

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.19. 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

5.20. name

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.21. nodeMap

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.22. over

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

The value of this property is set to true when the user mouses over the instance's previewShell implied 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

5.23. previewClickAction

A string, specifying the desired action that should be performed when the previewShell implied 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 (ie. defaulting to the behavior for the value 'Preview').

NOTES

the initial value is undefined

IMPLEMENTATION INFO

this feature was introduced in this module

5.24. 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 implied 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

5.25. 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

5.26. 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

5.27. title

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

The innerHTML value of the title Implied 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

5.28. wired

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6. Instance Methods

6.1. addChild

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.2. addChildButton

IMPLEMENTATION INFO

this feature was introduced in this module

6.3. ajax

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.4. buildHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.5. callInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.6. confirm

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.7. displayNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.8. fire

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

6.9. flushNodeCache

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.10. get

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

6.11. getInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.12. getNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.13. getNodeStyle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.14. getNodeValue

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.15. getProvider

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.16. globalizeNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.17. inform

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.18. injectNodeHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.19. insertOrWireUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.20. insertUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.21. is

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

6.22. 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)

6.23. localize

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.24. met

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

6.25. once

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

6.26. removeChild

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.27. removeNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.28. removeUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.29. set

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

6.30. setInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.31. setNodeClipRect

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.32. setNodeInnerHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.33. setNodeOpacity

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.34. setNodeProperties

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.35. setNodeStyle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.36. setNodeValue

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.37. showNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.38. toggle

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

6.39. unmet

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

6.40. unwire

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

6.41. unwireNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.42. unwireNodeEventsByMatch

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.43. unwireUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.44. updateUi

IMPLEMENTATION INFO

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

6.45. wire

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

6.46. wireNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6.47. wireUi

IMPLEMENTATION INFO

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

7. Instance Properties

7.1. showConfirm

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

7.2. showInform

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

8. Static Methods

8.1. 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.2. 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.3. 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.4. Uize.Widget.CollectionItem.registerProperties

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.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.6. 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.7. 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.8. 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.9. 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.10. 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.11. 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.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.2. 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.3. 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