Skip to content

Commit 3964ec4

Browse files
author
xaver
committed
fixed colspan in cronlist, added min-width in combobox table td, added new trigger in combobox for onclick autocomplete to submit
1 parent ac28b53 commit 3964ec4

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

interface/web/themes/default_combobox/css/additional.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
table.list td {min-width:32px}
2+
13
/*
24
* jQuery UI CSS Framework 1.8.16
35
*

interface/web/themes/default_combobox/templates/main.tpl.htm

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@
7777
$(".panel #Filter").attr("onsubmit",$(".panel #Filter").attr("onclick")).submit();
7878
}
7979
});
80+
81+
jQuery(".ui-autocomplete a").live("click", function(event) {
82+
if ($(".panel #Filter").length > 0) {
83+
$(".panel #Filter").attr("onsubmit",$(".panel #Filter").attr("onclick")).submit();
84+
}
85+
});
8086

8187
//Use jQuery submit with kespress Enter in panel filterbar
8288
jQuery(document).bind("keypress", function(event) {

0 commit comments

Comments
 (0)