Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Kov
    • Nábytek
    • Jídlo
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • IT hardware a podpora
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Services for Partners
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Custom form widget in one2many field doesn't render

Odebírat

Get notified when there's activity on this post

This question has been flagged
javascriptformone2manywidget
1 Odpovědět
10789 Zobrazení
Avatar
Christoph

Problem

I created a custom form widget to render an icon to represent the states of an selection field. This field and widget is used in a one2many field/widget. The problem is now that it just works if you are editing the line of the one2many field. If you are just viewing the form without editing only the id of the selection field is shown as text.

View mode:

https://www.dropbox.com/s/ml7u08lz606bp85/one2many_customwidget_view.png?dl=0 

Edit mode:

https://www.dropbox.com/s/4ttq70lbnrbf8zi/one2many_customwidget_edit.png?dl=0 

(image embedding is currently not working for me)

Code

Java Script

    instance.web.form.widgets.add('managerstate', 'instance.web.form.FieldManagerState');

instance.web.form.FieldManagerState = instance.web.form.FieldChar.extend({
template: 'FieldManagerState',
widget_class: 'oe_form_field_managerstate',
render_value: function () {
if (this.get('value') == 'email_sent') {
this.$el.find('i').css('color', 'blue');
} else if (this.get('value') == 'activated') {
this.$el.find('i').css('color', 'red');
}
}
});

Qweb XML

<?xml version="1.0" encoding="UTF-8"?>
<templates>
<t t-name="FieldManagerState">
<span t-att-class="'oe_form_field '+widget.widget_class"
t-att-style="widget.node.attrs.style">
<i class="fa fa-eye" style="font-size: 1.5em; line-height: 28px; padding-left: 5px;"/>
</span>
</t>
</templates>

Do you have any idea how to render the widget in the view mode correctly (same as in the edit mode).

0
Avatar
Zrušit
Avatar
Christoph
Autor Nejlepší odpověď

I found the solution:

For the list view (i.e. also in x2many fields) you have to write an own widget renderer class. It is important which name the name/id after the add() function has. Here an extract of the comment in the code (you can find it in addons/web/static/src/js/view_list.js):

/**
* Registry for column objects used to format table cells (and some other tasks
* e.g. aggregation computations).
*
* Maps a field or button to a Column type via its ``$tag.$widget``,
* ``$tag.$type`` or its ``$tag`` (alone).
**/

Java Script

    instance.web.list.columns.add('field.managerstate', 'instance.web.list.Managerstate');

instance.web.list.Managerstate = instance.web.list.Column.extend({
_format: function (row_data, options) {
var value = row_data[this.id].value;
// do something
var style = 'red';
return QWeb.render('FieldManagerState.cell', {
'style': style,
});
}
});

Qweb XML

 <t t-name="FieldManagerState.cell><button type="button"><i class="fa fa-eye" t-att-style="style"/></button></t>

In this example I reduced the code to show how it works. It doesn't contains all the logic of the question. But as you maybe see you have to do the same logic as in the question (depends on how it works/looks like in the read, edit mode in the list or without list.

0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
Posting form data via JS throws bad request 400 because no csfr token, that I have in the form.
javascript form widget v14
Avatar
0
čvn 21
5252
Set hotkey focus input text
javascript widget
Avatar
0
srp 20
3951
Javascript migration from 10 to 8
javascript widget
Avatar
0
úno 18
4176
Odoo widget $el
javascript widget
Avatar
0
zář 17
5043
How to display order line with sub-lines in form of multiple forms with navigation buttons
form view one2many widget navigation
Avatar
0
čvc 16
5379
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now