UIZE JavaScript Framework

MODULES Uize.Widgets.Log.InstanceEvents.Widget

1. Introduction

The Uize.Widgets.Log.InstanceEvents.Widget class implements a log interface for logging the instance events of an instance of a Uize.Class subclass.

DEVELOPERS: Chris van Rensburg

1.1. Visual Sampler

Below is a visual sampler of the Uize.Widgets.Log.InstanceEvents.Widget class...

1.2. In a Nutshell

1.2.1. Logging an Instance's Events

To log instance events for an instance of the Uize.Widgets.Log.InstanceEvents.Widget class, set the log instance's instance state property to be a reference to the instance whose events you want to log.

That may sound like a mouthful, but it's a lot simpler than it may sound. Consider the following example...

EXAMPLE

var slider = page.addChild ('slider',Uize.Widget.Bar.Slider);
page.addChild ('sliderEventsLog',Uize.Widgets.Log.InstanceEvents.Widget,{instance:slider});

In the above example, a slider widget is being added as a child widget of the page widget (which is assumed to already exist). Then, an instance of the Uize.Widgets.Log.InstanceEvents.Widget class is also being added as a child widget of the page widget. To have the instance events from the slider widget logged to the instance events logger widget, its instance property is set to be a reference to the slider widget. It's really that simple. The above code snippet, of course, assumes that the page widget instance was created earlier, and that the HTML page in which this code runs has all the necessary HTML markup for the UI's of the slider and log widgets.

1.2.2. All Instance Events Logged

All instance events for an instance being watched are logged.

This includes all custom instance events that are fired using the instance's fire method, as well as all Changed.* property change events that result from values of the instance's various state properties being changed. This means that you can use a Uize.Widgets.Log.InstanceEvents.Widget instance to watch for changes in the state of some other instance.

1.2.2.1. Custom Instance Events

When a custom instance events is logged, the log message is prefixed with the value of the customInstanceEvent localizable string, and the name of the custom event is appended.

1.2.2.2. Property Change Events

When a Changed.* property change event is logged, the log message is prefixed with the value of the propertiesChangedEvent localizable string, and the new values for all properties that have changed are appended to the message as a JSON formatted string.

1.2.3. Watch Any Instance

The instance for which instance events are logged can be an instance of any Uize.Class subclass - not just widget classes.

Any Uize.Class subclass instance can have state properties and can have custom instance events, so logging instance events is applicable beyond just observing widget instance's (although widget instances can be quite compelling to watch).

1.2.4. Dynamic Switching

The Uize.Widgets.Log.InstanceEvents.Widget class supports dynamic switching of the instance for which events are being logged.

The value of a log widget's instance state property can be changed at any time. If the value of the instance property is changed after the log widget's UI has already been wired up, then any logged instance events from a previous instance that was being watched will be cleared from the log.

1.2.5. Nothing to Watch

When a log widget's instance state property is set to the value null or undefined, then no instance will be watched.

If the instance property is set to null or undefined after the log was already wired up and watching instance events for some instance, then the log will be cleared and no more messages will be displayed until the instance property is once again set to an instance of a Uize.Class subclass.

1.3. Examples

There are no dedicated showcase example pages for the Uize.Widgets.Log.InstanceEvents.Widget module.

SEARCH FOR EXAMPLES

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

SEARCH

1.4. Implementation Info

The Uize.Widgets.Log.InstanceEvents.Widget module defines the Uize.Widgets.Log.InstanceEvents.Widget class, which is a subclass of Uize.Widgets.Log.Widget.

INHERITANCE CHAIN

Uize.Class −> Uize.Widget −> Uize.Widget.V2 −> Uize.Widgets.BoxWithHeading.Widget −> Uize.Widgets.Log.Widget −> Uize.Widgets.Log.InstanceEvents.Widget

1.4.1. Features Introduced in This Module

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

STATE PROPERTIES

instance

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

valueOf

STATE PROPERTIES

localized

STATIC PROPERTIES

Uize.Widgets.Log.InstanceEvents.Widget.moduleName | Uize.Widgets.Log.InstanceEvents.Widget.nonInheritableStatics | Uize.Widgets.Log.InstanceEvents.Widget.undefined

1.4.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 | clear | confirm | cssClass | displayNode | fire | flushNodeCache | get | getContainer | getHtml | getInherited | getNode | getNodeStyle | getNodeValue | getProvider | globalizeNode | inform | injectNodeHtml | insertOrWireUi | insertUi | is | isMet | kill | loc | localize | log | met | nodeId | onChange | once | removeChild | removeNode | removeUi | rootNodeCssClasses | set | setInherited | setNodeClipRect | setNodeInnerHtml | setNodeOpacity | setNodeProperties | setNodeStyle | setNodeValue | showNode | toggle | unmet | unwire | unwireNode | unwireNodeEventsByMatch | unwireUi | updateUi | whenever | wire | wireNode | wireUi

INSTANCE PROPERTIES

showConfirm | showInform

STATE PROPERTIES

built | busy | busyInherited | busyParentTickle | children | container | enabled | enabledInherited | enabledParentTickle | extraClasses | html | idPrefix | idPrefixConstruction | insertionMode | isEmpty | locale | localeInherited | localeParentTickle | name | nodeMap | parent | showTimestamp | size | sizeInherited | sizeParentTickle | timestampFormat | title | wired

STATIC METHODS

Uize.Widgets.Log.InstanceEvents.Widget.alphastructor | Uize.Widgets.Log.InstanceEvents.Widget.childBindings | Uize.Widgets.Log.InstanceEvents.Widget.childObjectEventBindings | Uize.Widgets.Log.InstanceEvents.Widget.children | Uize.Widgets.Log.InstanceEvents.Widget.childrenLinked | Uize.Widgets.Log.InstanceEvents.Widget.cssBindings | Uize.Widgets.Log.InstanceEvents.Widget.cssClassPrefix | Uize.Widgets.Log.InstanceEvents.Widget.declarativeChildObjects | Uize.Widgets.Log.InstanceEvents.Widget.declare | Uize.Widgets.Log.InstanceEvents.Widget.doMy | Uize.Widgets.Log.InstanceEvents.Widget.dualContextMethods | Uize.Widgets.Log.InstanceEvents.Widget.dualContextProperties | Uize.Widgets.Log.InstanceEvents.Widget.eventBindings | Uize.Widgets.Log.InstanceEvents.Widget.fire | Uize.Widgets.Log.InstanceEvents.Widget.get | Uize.Widgets.Log.InstanceEvents.Widget.getBlankImageUrl | Uize.Widgets.Log.InstanceEvents.Widget.hasLoc | Uize.Widgets.Log.InstanceEvents.Widget.htmlBindings | Uize.Widgets.Log.InstanceEvents.Widget.instanceMethods | Uize.Widgets.Log.InstanceEvents.Widget.instanceProperties | Uize.Widgets.Log.InstanceEvents.Widget.mixins | Uize.Widgets.Log.InstanceEvents.Widget.omegastructor | Uize.Widgets.Log.InstanceEvents.Widget.set | Uize.Widgets.Log.InstanceEvents.Widget.singleton | Uize.Widgets.Log.InstanceEvents.Widget.spawn | Uize.Widgets.Log.InstanceEvents.Widget.stateProperties | Uize.Widgets.Log.InstanceEvents.Widget.staticMethods | Uize.Widgets.Log.InstanceEvents.Widget.staticProperties | Uize.Widgets.Log.InstanceEvents.Widget.subclass | Uize.Widgets.Log.InstanceEvents.Widget.toggle | Uize.Widgets.Log.InstanceEvents.Widget.treeInheritedStateProperties | Uize.Widgets.Log.InstanceEvents.Widget.unwire | Uize.Widgets.Log.InstanceEvents.Widget.wire

STATIC PROPERTIES

Uize.Widgets.Log.InstanceEvents.Widget.busyParentTickle | Uize.Widgets.Log.InstanceEvents.Widget.enabledParentTickle | Uize.Widgets.Log.InstanceEvents.Widget.extraClasses | Uize.Widgets.Log.InstanceEvents.Widget.isWired | Uize.Widgets.Log.InstanceEvents.Widget.locale | Uize.Widgets.Log.InstanceEvents.Widget.localeParentTickle | Uize.Widgets.Log.InstanceEvents.Widget.pathToResources | Uize.Widgets.Log.InstanceEvents.Widget.size | Uize.Widgets.Log.InstanceEvents.Widget.sizeParentTickle

1.4.4. Modules Directly Under This Namespace

There are no modules directly under this namespace.

1.4.5. Unit Tests

There is no dedicated unit tests module for the Uize.Widgets.Log.InstanceEvents.Widget module.

2. State Properties

2.1. built

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.2. busy

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.3. busyInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.4. busyParentTickle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.5. children

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.6. container

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.7. enabled

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.8. enabledInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.9. enabledParentTickle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.10. extraClasses

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

2.11. html

Inherited from Uize.Widgets.Log.Widget, but introduced in Uize.Widget.

IMPLEMENTATION INFO

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

2.12. idPrefix

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.13. idPrefixConstruction

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.14. insertionMode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.15. instance

An object reference, specifying the instance of a Uize.Class subclass for which instance events should be logged.

The value of the instance state property can be a reference to an instance of any Uize.Class subclass - not just widget classes (see Watch Any Instance). The value of the instance state property can be changed at any time - even after the log widget has already been wired up (see Dynamic Switching). When the instance property is set to the value null or undefined, then no instance will be watched (see Nothing to Watch).

IMPLEMENTATION INFO

this feature was introduced in this module

2.16. isEmpty

Inherited from Uize.Widgets.Log.Widget.

IMPLEMENTATION INFO

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

2.17. locale

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

2.18. localeInherited

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

2.19. localeParentTickle

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

2.20. localized

IMPLEMENTATION INFO

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

2.21. name

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.22. nodeMap

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.23. parent

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

2.24. showTimestamp

Inherited from Uize.Widgets.Log.Widget.

IMPLEMENTATION INFO

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

2.25. size

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

2.26. sizeInherited

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

2.27. sizeParentTickle

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

2.28. timestampFormat

Inherited from Uize.Widgets.Log.Widget.

IMPLEMENTATION INFO

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

2.29. title

Inherited from Uize.Widgets.Log.Widget.

IMPLEMENTATION INFO

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

2.30. wired

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

3. Localizable Strings

3.1. customInstanceEvent

A localizable string, that will be prepended to log messages for all custom instance events.

3.2. nothingToWatch

A localizable string, that will be logged as a log message whenever there is no valid object to watch events on (see Nothing to Watch).

In order for the instance to have a valid object to watch events on, the value of the instance state property must be either a reference to an instance of a Uize.Class subclass, or a referece to a Uize.Class subclass.

3.3. propertiesChangedEvent

A localizable string, that will be prepended to log messages for all property change events.

3.4. startedWatching

A localizable string, that will be logged as a log message whenever the instance starts watching events on a new object.

4. Instance Methods

4.1. addChild

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.2. addChildren

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.3. ajax

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.4. buildHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.5. callInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.6. childHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.7. childId

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.8. clear

Inherited from Uize.Widgets.Log.Widget.

IMPLEMENTATION INFO

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

4.9. confirm

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.10. cssClass

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

4.11. displayNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.12. fire

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.13. flushNodeCache

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.14. get

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.15. getContainer

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.16. getHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.17. getInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.18. getNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.19. getNodeStyle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.20. getNodeValue

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.21. getProvider

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.22. globalizeNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.23. inform

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.24. injectNodeHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.25. insertOrWireUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.26. insertUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.27. is

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.28. isMet

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

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

4.30. loc

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

4.31. localize

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.32. log

Inherited from Uize.Widgets.Log.Widget.

IMPLEMENTATION INFO

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

4.33. met

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.34. nodeId

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.35. onChange

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.36. once

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.37. removeChild

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.38. removeNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.39. removeUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.40. rootNodeCssClasses

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

4.41. set

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.42. setInherited

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.43. setNodeClipRect

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.44. setNodeInnerHtml

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.45. setNodeOpacity

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.46. setNodeProperties

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.47. setNodeStyle

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.48. setNodeValue

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.49. showNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.50. toggle

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.51. unmet

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.52. unwire

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.53. unwireNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.54. unwireNodeEventsByMatch

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.55. unwireUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.56. updateUi

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.57. valueOf

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

IMPLEMENTATION INFO

4.58. whenever

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.59. wire

Inherited from Uize.Class.

IMPLEMENTATION INFO

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

4.60. wireNode

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

4.61. wireUi

Inherited from Uize.Widgets.Log.Widget, but introduced in Uize.Widget.

IMPLEMENTATION INFO

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

5. Instance Properties

5.1. showConfirm

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

5.2. showInform

Inherited from Uize.Widget.

IMPLEMENTATION INFO

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

6. Static Methods

6.1. Uize.Widgets.Log.InstanceEvents.Widget.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

6.2. Uize.Widgets.Log.InstanceEvents.Widget.childBindings

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

6.3. Uize.Widgets.Log.InstanceEvents.Widget.childObjectEventBindings

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

6.4. Uize.Widgets.Log.InstanceEvents.Widget.children

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

6.5. Uize.Widgets.Log.InstanceEvents.Widget.childrenLinked

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

6.6. Uize.Widgets.Log.InstanceEvents.Widget.cssBindings

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

6.7. Uize.Widgets.Log.InstanceEvents.Widget.cssClassPrefix

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

6.8. Uize.Widgets.Log.InstanceEvents.Widget.declarativeChildObjects

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

6.9. Uize.Widgets.Log.InstanceEvents.Widget.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

6.10. Uize.Widgets.Log.InstanceEvents.Widget.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

6.11. Uize.Widgets.Log.InstanceEvents.Widget.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

6.12. Uize.Widgets.Log.InstanceEvents.Widget.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

6.13. Uize.Widgets.Log.InstanceEvents.Widget.eventBindings

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

6.14. Uize.Widgets.Log.InstanceEvents.Widget.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

6.15. Uize.Widgets.Log.InstanceEvents.Widget.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

6.16. Uize.Widgets.Log.InstanceEvents.Widget.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

6.17. Uize.Widgets.Log.InstanceEvents.Widget.hasLoc

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

6.18. Uize.Widgets.Log.InstanceEvents.Widget.htmlBindings

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

6.19. Uize.Widgets.Log.InstanceEvents.Widget.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

6.20. Uize.Widgets.Log.InstanceEvents.Widget.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

6.21. Uize.Widgets.Log.InstanceEvents.Widget.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

6.22. Uize.Widgets.Log.InstanceEvents.Widget.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

6.23. Uize.Widgets.Log.InstanceEvents.Widget.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

6.24. Uize.Widgets.Log.InstanceEvents.Widget.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

6.25. Uize.Widgets.Log.InstanceEvents.Widget.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

6.26. Uize.Widgets.Log.InstanceEvents.Widget.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

6.27. Uize.Widgets.Log.InstanceEvents.Widget.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

6.28. Uize.Widgets.Log.InstanceEvents.Widget.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

6.29. Uize.Widgets.Log.InstanceEvents.Widget.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

6.30. Uize.Widgets.Log.InstanceEvents.Widget.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

6.31. Uize.Widgets.Log.InstanceEvents.Widget.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

6.32. Uize.Widgets.Log.InstanceEvents.Widget.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

6.33. Uize.Widgets.Log.InstanceEvents.Widget.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

7. Static Properties

7.1. Uize.Widgets.Log.InstanceEvents.Widget.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

7.2. Uize.Widgets.Log.InstanceEvents.Widget.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

7.3. Uize.Widgets.Log.InstanceEvents.Widget.extraClasses

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

7.4. Uize.Widgets.Log.InstanceEvents.Widget.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

7.5. Uize.Widgets.Log.InstanceEvents.Widget.locale

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

7.6. Uize.Widgets.Log.InstanceEvents.Widget.localeParentTickle

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

7.7. Uize.Widgets.Log.InstanceEvents.Widget.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

7.8. Uize.Widgets.Log.InstanceEvents.Widget.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

7.9. Uize.Widgets.Log.InstanceEvents.Widget.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

7.10. Uize.Widgets.Log.InstanceEvents.Widget.size

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

7.11. Uize.Widgets.Log.InstanceEvents.Widget.sizeParentTickle

Inherited from Uize.Widget.V2.

IMPLEMENTATION INFO

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

7.12. Uize.Widgets.Log.InstanceEvents.Widget.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