> 2. I just discovered this one, I still have to open a report: if you have a 
> fields.text in a one2many tree, you are not able to puts carriage returns in 
> the textarea because the <ENTER> key is caught to act as "save the line".

We probably won't fix that in 6.1 unless there's a very good use case for it 
(ideally a built-in view using editable text fields), the 6.1 editable list 
wasn't really built for multiline content.

Though it should be changeable by altering openerp.web.form.FieldText, and 
doing something along the lines of:

    this.$element.find('textarea').keyup(function (e) {
        if (e.which === 13) {
            e.stopPropagation();
        }
    });

after the widget has been started.
-- 
https://code.launchpad.net/~openerp-dev/openerp-web/6.1-o2m-nosuck-xmo/+merge/110522
Your team OpenERP R&D Team is subscribed to branch 
lp:~openerp-dev/openerp-web/6.1-o2m-nosuck-xmo.

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to