2018-07-20 17:00 GMT+02:00 Luciano Rossi <[email protected]>: > Hi everybody, > > I need to add records inside of a one2many field, but as inline edit on a > list view. The idea is similiar when adding *tags* on a website. [0] >
Unfortunately not. The closer you can achieve is using "multiselection" widget as the stock_lot module does: <field name="lot_required" widget="multiselection" yexpand="0"/> Or you could hack something by using a many2one field + a many2many one and using the m2o's on_change method to fill in the m2m and cleaning the m2o. > > [0] https://harvesthq.github.io/chosen/?utm_source=hackernewsletter > > Is there any way to achive it? > > Thanks, > -- > Luciano Rossi - [email protected] > http://gcoop.coop - Cooperativa de Software Libre > La Pampa 4395 CABA C1430BXU +54 11 5254-7755 > > Visitá www.tiendas.coop - www.nube.coop > > -- > You received this message because you are subscribed to the Google Groups > "tryton" group. > To view this discussion on the web visit https://groups.google.com/d/ms > gid/tryton/9c7fbc48-198e-b2d2-20be-074c77e37f6e%40gcoop.coop. > -- Albert Cervera i Areny http://www.NaN-tic.com Tel. 93 553 18 03 -- You received this message because you are subscribed to the Google Groups "tryton" group. To view this discussion on the web visit https://groups.google.com/d/msgid/tryton/CADWJ7Gm_Pkd4-URfPpFEjrr4P346db96WyzGaxJABBSuY%3DGp1g%40mail.gmail.com.
