'Fenster schließen' als Link und nicht als vollen Button darstellen
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 18 Jun 2013 09:20:43 +0000 (11:20 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 18 Jun 2013 09:20:48 +0000 (11:20 +0200)
...wie in anderen Popup-Dialogen auch

templates/webpages/admin/edit_client.html
templates/webpages/admin/test_db_connection.html

index 5f853e1..e6cacaa 100644 (file)
     open_jqm_window({
       url:  'controller.pl?action=Admin/test_database_connectivity',
       data: $("INPUT[data-dbsettings=1]").serialize(),
-      type: 'POST'
+      type: 'POST',
+      id:   'test_db_connection_window'
     });
     return true;
   }
index df9a59d..4f1271d 100644 (file)
@@ -1,5 +1,5 @@
 [%- USE HTML %][%- USE LxERP -%][%- USE L -%]
-<h1>[% HTML.escape(title) %]</h1>
+<div class="listtop">[% HTML.escape(title) %]</div>
 
 [%- IF ok %]
 
@@ -17,5 +17,5 @@
 [%- END %]
 
 <div>
- [% L.button_tag("\$('#jqm_popup_dialog .close').trigger('click');", LxERP.t8("Close Window")) %]
+ <a href="#" onclick="$('#test_db_connection_window').jqmClose();">[% LxERP.t8("Close Window") %]</a>
 </div>