Skip to content
Snippets Groups Projects
Commit 3964ec43 authored by xaver's avatar xaver
Browse files

fixed colspan in cronlist, added min-width in combobox table td, added new...

fixed colspan in cronlist, added min-width in combobox table td, added new trigger in combobox for onclick autocomplete to submit
parent ac28b53f
No related branches found
No related tags found
2 merge requests!46Master,!21Master
table.list td {min-width:32px}
/*
* jQuery UI CSS Framework 1.8.16
*
......
......@@ -77,6 +77,12 @@
$(".panel #Filter").attr("onsubmit",$(".panel #Filter").attr("onclick")).submit();
}
});
jQuery(".ui-autocomplete a").live("click", function(event) {
if ($(".panel #Filter").length > 0) {
$(".panel #Filter").attr("onsubmit",$(".panel #Filter").attr("onclick")).submit();
}
});
//Use jQuery submit with kespress Enter in panel filterbar
jQuery(document).bind("keypress", function(event) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment