mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-17 20:11:23 +02:00
Set node property for inputWidget as it's expected to contain input node
This commit is contained in:
@@ -38,6 +38,7 @@ const Et2InputWidgetMixin = (superclass) =>
|
||||
{
|
||||
protected value : string | number | Object;
|
||||
protected _oldValue : string | number | Object;
|
||||
protected node : HTMLElement;
|
||||
|
||||
/** WebComponent **/
|
||||
static get styles()
|
||||
@@ -70,7 +71,11 @@ const Et2InputWidgetMixin = (superclass) =>
|
||||
super(...args);
|
||||
|
||||
}
|
||||
|
||||
connectedCallback()
|
||||
{
|
||||
super.connectedCallback();
|
||||
this.node = this.getInputNode();
|
||||
}
|
||||
set_value(new_value)
|
||||
{
|
||||
this.value = new_value;
|
||||
|
Reference in New Issue
Block a user