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

Odoo 15 Listview ListController & ListRender field value

Odebírat

Get notified when there's activity on this post

This question has been flagged
javascriptlistviewListControllerListRenderer
1 Odpovědět
5145 Zobrazení
Avatar
Muhammad Faheem Khan

I have a custom widget in a list view to show a selection field. I am using ListRenderer.include from javascript side to add my widget. Now from Listcontroller.include, my  custom java script function is doing some logic in same list view, I am calling this.reload(); to reload the view at the end of the function, my problem is I don't want to change selection of above-mentioned field but when this.reload(); is triggering, it is resetting the value of the above selection field.


Here is my field.

select class="form-control my_field">
t-foreach="widget.my_widget" t-as="dict_a">



In JavaScript I am storing this field's selection ID in local storage when user changes this field. But when this.reload(); happens, it is resetting the value of this field in widget view but not in local storage. Now view has something else, but value being used in functions is something else. How can I avoid it?

Here is my function responsible to handle field value in ListRenderer.include

_on_change_my_field: async function(ev) {
ev.stopPropagation();
var selection = $(ev.currentTarget).val();
localStorage.setItem('localstorage_field_name', selection);
},


here is a function from ListController.include having this.reload();

_myfunction: async function(myinput){
var data = localStorage.getItem('localstorage_field_name') || '';
console.log(data);
// console: 8
//do the logic
this
.reload();
var test_data = localStorage.getItem('localstorage_find_name') || "";
console.log(data, test_data)
// console: 8, 8
}



0
Avatar
Zrušit
Avatar
Ashish Hirpara
Nejlepší odpověď

If you want to avoid resetting the value of the selection field when calling this.reload(), you can try setting the value of the field directly in the widget before calling this.reload(). This way, when the view is reloaded, the value of the field will not be reset. Here is an example of how you can do this:

In your ListRenderer.include, add the following code to your _on_change_my_field function:

// Store the selection in local storage localStorage.setItem('localstorage_field_name', selection);

// Set the value of the selection field in the widget this.widget.my_field = selection;

Then, in your ListController.include, you can call this.reload() as usual:

_myfunction: async function(myinput){ var data = localStorage.getItem('localstorage_field_name') || ''; console.log(data); // do the logic this.reload(); var test_data = localStorage.getItem('localstorage_find_name') || ""; console.log(data, test_data) }

This should ensure that the value of the selection field in the widget is not reset when calling this.reload().

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
Can't open records from list view in js action odoo16
javascript listview odoo ListController odoo16features
Avatar
0
úno 23
3480
js_class in modal list view doesn't work
javascript listview
Avatar
0
led 21
3996
Odoo 15 - Issue adding buttons next to the Create button in HR Employee list view
listview frontend ListController
Avatar
Avatar
2
led 22
8701
Extend ListView (JavaScript)
javascript widget listview
Avatar
0
úno 16
6389
STICK one2many tree view headers
javascript treeview one2many listview tree
Avatar
1
úno 24
1788
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