admin->sales->orders but not to admin->sales-customer.
can it be added to the next revision?
I believe this fixes it:
in file "admin/view/template/sale/customer_list.tpl"
right after the last
Code: Select all
//--></script>
add
Code: Select all
<script type="text/javascript"><!--
$('#form input').keydown(function(e) {
if (e.keyCode == 13) {
filter();
}
});
//--></script>