Reputation: 664
I am working in sale order line and currently by pressing "Enter" key in one2many field it is creating new line, but I want to do some changes so Enter key work as TAB key ,It means if I pressed Enter key then insted of creating new line it should focus on next field of one2many.
Example:
There are 4 fields in one line so when I pressed enter key it should switch to next field in same line insted of creating new line.
Upvotes: 0
Views: 425
Reputation: 127
Changes "Enter" key behaviour in UI form: jump to next input field instead of doing nothing.
Just use web_returnkey module (by Vadim)and take a look at this answer in ODOO Forum https://www.odoo.com/forum/help-1/how-to-make-the-enter-key-work-as-tab-key-in-form-view-134811 :
https://www.youtube.com/watch?v=hdD-C2ppsyQ
Upvotes: -2
Reputation: 664
I am giving answer to my question .. Actually I tried and found one solution from the following link:
There are some issue which I found in that answer but didn't able to solve that :(
Issues are:
(1) I make change in base model of web in that "view_list_editable.js" as told in this link insted of my custom model.
(2) Also when any read-only fields is there in between One2Many visible fields then this solution is not working..
Upvotes: 0