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 8d86105 commit 3b1c2b0Copy full SHA for 3b1c2b0
src/Presentation/SmartStore.Web/Administration/Views/Order/List.cshtml
@@ -165,6 +165,15 @@
165
var reportAggregates = "";
166
167
$(function() {
168
+
169
+ // Filter (enter) key listener.
170
+ $('.grid-filter').on('keypress', function (e) {
171
+ if (e.key === "Enter") {
172
+ e.preventDefault();
173
+ $('#btnSearch').click();
174
+ }
175
+ });
176
177
// Filter toggler.
178
$('.btn-toggle-filter').on('click', function (e) {
179
$('.grid-filter').slideToggle({ duration: 200, easing: 'ease-in-out' });
0 commit comments