ClientJS: dialog aufmachen
authorSven Schöling <s.schoeling@linet-services.de>
Mon, 26 Jan 2015 17:32:34 +0000 (18:32 +0100)
committerSven Schöling <s.schoeling@linet-services.de>
Tue, 27 Jan 2015 10:47:27 +0000 (11:47 +0100)
SL/ClientJS.pm
js/client_js.js

index 0da0afd..2eedbee 100644 (file)
@@ -75,7 +75,8 @@ my %supported_methods = (
 
   # ## jQuery UI dialog plugin ## pattern: $(<TARGET>).dialog('<FUNCTION>')
 
-  # Closing and removing the popup
+  # Opening and closing and closing a popup
+  'dialog:open'          => 1, # kivi.popup_dialog(<TARGET>)
   'dialog:close'         => 1,
 
   # ## jQuery Form plugin ##
index bd70c89..a0e6eab 100644 (file)
@@ -89,7 +89,8 @@ ns.eval_json_result = function(data) {
 
       // ## jQuery UI dialog plugin ##
 
-      // Closing and removing the popup
+      // Opening and closing and closing a popup
+      else if (action[0] == 'dialog:open')          kivi.popup_dialog(action[1]);
       else if (action[0] == 'dialog:close')         $(action[1]).dialog('close');
 
       // ## jQuery Form plugin ##