Merge pull request #5599 from luisramos0/submit_on_enteer

Make Enter submit the form on both products and orders admin
This commit is contained in:
Matt-Yorkley
2020-07-03 11:14:57 +02:00
committed by GitHub
2 changed files with 5 additions and 5 deletions

View File

@@ -16,17 +16,17 @@
.four.columns
.field
= label_tag nil, t(:order_number)
= text_field_tag "q[number_cont]", nil, 'ng-model' => 'q.number_cont'
= text_field_tag "q[number_cont]", nil, "ng-model" => "q.number_cont", "ng-keypress" => "$event.keyCode === 13 && fetchResults()"
.field
= label_tag nil, t(:email)
= email_field_tag "q[email_cont", nil, 'ng-model' => 'q.email_cont'
= email_field_tag "q[email_cont", nil, "ng-model" => "q.email_cont", "ng-keypress" => "$event.keyCode === 13 && fetchResults()"
.four.columns
.field
= label_tag nil, t(:first_name_begins_with)
= text_field_tag "q[bill_address_firstname_start]", nil, size: 25, 'ng-model' => 'q.bill_address_firstname_start'
= text_field_tag "q[bill_address_firstname_start]", nil, size: 25, "ng-model" => "q.bill_address_firstname_start", "ng-keypress" => "$event.keyCode === 13 && fetchResults()"
.field
= label_tag nil, t(:last_name_begins_with)
= text_field_tag "q[bill_address_lastname_start]", nil, size: 25, 'ng-model' => 'q.bill_address_lastname_start'
= text_field_tag "q[bill_address_lastname_start]", nil, size: 25, "ng-model" => "q.bill_address_lastname_start", "ng-keypress" => "$event.keyCode === 13 && fetchResults()"
.omega.four.columns
.field.checkbox
%label

View File

@@ -5,7 +5,7 @@
.quick_search.three.columns.alpha
%label{ for: 'quick_filter' }
%br
%input.quick-search.fullwidth{ ng: {model: 'query'}, name: "quick_filter", type: 'text', placeholder: t('admin.quick_search') }
%input.quick-search.fullwidth{ ng: {model: 'query'}, name: "quick_filter", type: 'text', placeholder: t('admin.quick_search'), "ng-keypress" => "$event.keyCode === 13 && fetchProducts()" }
.one.columns  
.filter_select.three.columns
%label{ for: 'producer_filter' }= t 'producer'