uiRegistry
uiRegistry
is a in-memory storage, plain storage of entities by keys. Implements the get()
, set()
, and has()
methods.
JS debugging using uiRegistry
To debug the UI component JS, we first need to get a uiRegistry
instance from the browser console. To do so, use the RequireJs ID uiRegistry
.
In the browser console enter the following:
Now we have uiRegistry
instance in the registry
variable. We can use it to get an instance of any component.
For example:
Lets look what we have in component variable. It keeps component context with all properties, we can see component file, component name and so on.