Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

TypeError: Cannot set properties of null (setting 'textContent') on my portal when using custom modules

Odoberať

Get notified when there's activity on this post

This question has been flagged
webenterprise18.0
1 Odpoveď
1861 Zobrazenia
Avatar
Gian Paolo Calzolaro

Hi everyone,


I'm working with Odoo 18 and have added some custom cards to the portal using the following custom modules: `customer_notes_odoo`, `calendar_meeting_portal`, and `contacts_patient`.


The cards were built by replicating the structure used in Odoo core, including both the XML views and the Python controller. However, when I load the portal, I get the following error in the browser console:


UncaughtPromiseError > TypeError

Uncaught Promise > Cannot set properties of null (setting 'textContent')

Occurred on rileysrl.odoo.com on 2025-05-31 at 15:38:50 GMT


TypeError: Cannot set properties of null (setting 'textContent')

    at https://rileysrl.odoo.com/web/assets/3/842f403/web.assets_frontend_lazy.min.js:8551:2095

    at Array.forEach (<anonymous>)

    at https://rileysrl.odoo.com/web/assets/3/842f403/web.assets_frontend_lazy.min.js:8551:1951

    at async Promise.all (index 2)


This only happens with the new custom cards. The default cards from Odoo work fine.


Does anyone have an idea of what might be causing this? Could it be that a DOM element expected by the JS isn't found or properly initialized?


Happy to share any additional code or details if needed. Thanks in advance for your help!


0
Avatar
Zrušiť
Avatar
D Enterprise
Best Answer

Compare your card HTML with a working Odoo portal card (like quotations or invoices).

Make sure each card has these elements inside

<div class="o_portal_docs">

    <div class="o_portal_doc_name">My Card Title</div>

    <div class="o_portal_doc_count">0</div>

</div>

  1. Ensure IDs/classes match what Odoo’s JS expects.
    (Most common missing: .o_portal_doc_name, .o_portal_doc_count)

Example Card Fix:
<t t-name="your_module_name.card_template">

    <div class="col-lg-4 col-md-6 o_portal_card">

        <a t-attf-href="/my/your_custom_route">

            <div class="o_portal_docs">

                <div class="o_portal_doc_name">My Custom Card</div>

                <div class="o_portal_doc_count">0</div>

            </div>

        </a>

    </div>

</t>




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

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Odoo 12e broke while editing website: "could not load template Template: web_editor.summernote" 500 error
web enterprise odoo12
Avatar
1
dec 18
7182
Did anybody succeed in a split-brain installation, yet?
community web enterprise connector
Avatar
0
aug 16
3544
How To Hide Action Report By Picking Type Code ?
18.0
Avatar
Avatar
Avatar
3
nov 25
588
Manufacturing BOM Raw material Consumption - 50cm from a much larger roll (xx cm) Solved
manufacturing enterprise EE 18.0 billofmaterials
Avatar
Avatar
Avatar
Avatar
3
okt 25
836
How do I set up budget management / planning Solved
18.0
Avatar
Avatar
2
aug 25
1086
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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