mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Fix camelCased attributes didn't work for more than 1 underscore
Also fixes vfsSelect destroyed session
This commit is contained in:
parent
bdc74303bb
commit
aace76b97a
@ -222,7 +222,7 @@ export class Et2Dialog extends Et2Widget(ScopedElementsMixin(SlotMixin(LionDialo
|
||||
/**
|
||||
* Automatically destroy the dialog when it closes. Set to false to keep the dialog around.
|
||||
*/
|
||||
destroy_on_close: Boolean,
|
||||
destroyOnClose: Boolean,
|
||||
|
||||
/**
|
||||
* Legacy-option for appending dialog into a specific dom node
|
||||
@ -319,7 +319,7 @@ export class Et2Dialog extends Et2Widget(ScopedElementsMixin(SlotMixin(LionDialo
|
||||
}
|
||||
this.modal = true;
|
||||
this.dialog_type = Et2Dialog.PLAIN_MESSAGE;
|
||||
this.destroy_on_close = true;
|
||||
this.destroyOnClose = true;
|
||||
this.hideOnEscape = this.hideOnEscape === false ? false : true;
|
||||
this.__value = {};
|
||||
|
||||
@ -398,7 +398,7 @@ export class Et2Dialog extends Et2Widget(ScopedElementsMixin(SlotMixin(LionDialo
|
||||
|
||||
this.dispatchEvent(new Event('close'));
|
||||
|
||||
if(this.destroy_on_close)
|
||||
if(this.destroyOnClose)
|
||||
{
|
||||
if(this._template_widget)
|
||||
{
|
||||
|
@ -1375,7 +1375,7 @@ function transformAttributes(widget, mgr : et2_arrayMgr, attributes)
|
||||
{
|
||||
let parts = attribute.split('_');
|
||||
if (attribute === 'parent_node') parts[1] = 'Id';
|
||||
attribute = parts.shift()+parts.map(part => part[0].toUpperCase()+part.substring(1));
|
||||
attribute = parts.shift() + parts.map(part => part[0].toUpperCase() + part.substring(1)).join("");
|
||||
}
|
||||
|
||||
const property = widget_class.getPropertyOptions(attribute);
|
||||
|
Loading…
Reference in New Issue
Block a user