mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-01 03:29:05 +01:00
Et2Dialog changes
- Fix Et2Dialog.show_prompt() incorrectly returned too much, should be just the prompt value
This commit is contained in:
parent
238a22ba01
commit
9e989596c2
@ -646,7 +646,14 @@ export class Et2Dialog extends Et2Widget(ScopedElementsMixin(SlotMixin(LionDialo
|
|||||||
let dialog = <Et2Dialog><unknown>document.createElement('et2-dialog');
|
let dialog = <Et2Dialog><unknown>document.createElement('et2-dialog');
|
||||||
dialog._setApiInstance();
|
dialog._setApiInstance();
|
||||||
dialog.transformAttributes({
|
dialog.transformAttributes({
|
||||||
callback: _callback,
|
// Wrap callback to _only_ return _value.value, not the whole object like we normally would
|
||||||
|
callback: function(_button_id, _value)
|
||||||
|
{
|
||||||
|
if(typeof _callback == "function")
|
||||||
|
{
|
||||||
|
_callback.call(this, _button_id, _value.value);
|
||||||
|
}
|
||||||
|
},
|
||||||
title: _title || 'Input required',
|
title: _title || 'Input required',
|
||||||
buttons: _buttons || Et2Dialog.BUTTONS_OK_CANCEL,
|
buttons: _buttons || Et2Dialog.BUTTONS_OK_CANCEL,
|
||||||
value: {
|
value: {
|
||||||
|
Loading…
Reference in New Issue
Block a user