summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Klaer <kj.landwehr.software@gmail.com>2015-08-21 09:31:54 +0200
committerJens Klaer <kj.landwehr.software@gmail.com>2015-08-21 09:31:54 +0200
commitb2f3f6b84b1f236ada36bf547405af65e6eae4ab (patch)
treea6e5f856f45ad7d9ec1201ba930f61d9fefd7f1e
parent4a4dd411abb23243d46a43e92deb4d22f2d34b17 (diff)
support options minwidth and minheight in TJuiDialog
-rw-r--r--framework/Web/UI/JuiControls/TJuiDialog.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Web/UI/JuiControls/TJuiDialog.php b/framework/Web/UI/JuiControls/TJuiDialog.php
index 0460cad5..7817c3b1 100644
--- a/framework/Web/UI/JuiControls/TJuiDialog.php
+++ b/framework/Web/UI/JuiControls/TJuiDialog.php
@@ -82,7 +82,7 @@ class TJuiDialog extends TActivePanel implements IJuiOptions, ICallbackEventHand
*/
public function getValidOptions()
{
- return array('appendTo', 'autoOpen', 'buttons', 'closeOnEscape', 'closeText', 'dialogClass', 'draggable', 'height', 'hide', 'maxHeight', 'maxWidth', 'modal', 'position', 'resizeable', 'show', 'title', 'width');
+ return array('appendTo', 'autoOpen', 'buttons', 'closeOnEscape', 'closeText', 'dialogClass', 'draggable', 'height', 'hide', 'minHeight', 'minWidth', 'maxHeight', 'maxWidth', 'modal', 'position', 'resizeable', 'show', 'title', 'width');
}
/**