We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6823459 commit 29922a3Copy full SHA for 29922a3
interface/web/themes/default_combobox/templates/main.tpl.htm
@@ -79,9 +79,9 @@
79
});
80
81
//Use jQuery submit with kespress Enter in panel filterbar
82
- jQuery(document).bind("keypress", function(event) {
83
- if (event.which == '13' && $(".panel #Filter").length > 0) {
84
- $(".panel #Filter").attr("onsubmit",$(".panel #Filter").attr("onclick")).submit();
+ jQuery(".panel .list input").live("keypress", function(event) {
+ if (event.which == '13' && $(this).parents("tr").find("#Filter")) {
+ $(this).parents("tr").find("#Filter").attr("onsubmit",$(".panel #Filter").attr("onclick")).submit();
85
}
86
87
0 commit comments