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

Autocomplete input on frontend

Odoberať

Get notified when there's activity on this post

This question has been flagged
autocompletefrontend
1 Odpoveď
5601 Zobrazenia
Avatar
Francesco Ballerini

I have a select with thousands of elements to show on frontend page but it loads very slowly so I want to use autocomplete input. 

I got a simple script here as example: https://jqueryui.com/autocomplete/ and it works on my frontend page but when I switch the example list with my list of elements it raise the following error:


TypeError: this.source is not a function

http://127.0.0.1:8069/web/static/lib/jquery.ui/jquery-ui.js:7602
Traceback:
_search@http://127.0.0.1:8069/web/static/lib/jquery.ui/jquery-ui.js:7602:8
$.widget/search@http://127.0.0.1:8069/web/static/lib/jquery.ui/jquery-ui.js:7594:15
$.widget/_searchTimeout/this.searchinghandlerProxy@http://127.0.0.1:8069/web/static/lib/jquery.ui/jquery-ui.js:641:6


I adapted my code to the res.country table data so it should be easy to test for anyone if you can help me with this. Log error doesn't say much to me because I don't know js framework, but when i t-out 'country_list' I can see list of strings. On _searchTimeout property I can read 

// search timeout should be triggered before the input value is changed 
So I guess it has something to do with promise resolve, async function.. all things I don't know very well : )


<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="my_details_snippet" inherit_id="portal.portal_my_details" name="Details Snippet">
<xpath expr="//form" position="after">
<script src="/web/static/lib/jquery.ui/jquery-ui.js" type="text/javascript"/>
<script type="text/javascript">
$( function() {
var availableCountries = $( "select_country_list_by_class" );
$( "#tags" ).autocomplete({
source: availableCountries
});
} );
</script>
</xpath>
<xpath expr="//form//select[@name='country_id']//parent::div" position="after">
<t t-set="country_list" t-value="[str(country_id.name) for country_id in countries]" class="select_country_list_by_class" />
<t t-esc="country_list"/>
<div class="ui-widget">
<label for="tags">Tags:</label>
<input id="tags"/>
</div>
</xpath>
</template>
</odoo>


0
Avatar
Zrušiť
Avatar
Francesco Ballerini
Autor Best Answer

I managed to make it work for my specific use case, since I provided a little example on 'country_id' I will also provide the snippet with the solution. I've adapted some things to make it works on Odoo 14

I had some trouble to make the autocomplete() solution working with countries because it will fail with 'unexpected token' if you don't trim the " ' " from some countries, that's why I used replace() in this snippet.

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="portal_details_autocomplete_snippet" inherit_id="portal.portal_my_details" name="User Profile">
<xpath expr="//form" position="inside">
<script src="/web/static/lib/jquery/jquery.js" type="text/javascript"/>
<script type="text/javascript">
<!-- Send readonly field to backend if any -->
$('Form').on('submit', function() {
$('select').prop('disabled', false);
});
</script>
<script src="/web/static/lib/jquery.ui/jquery-ui.js" type="text/javascript"/>
<script type="text/javascript">
$(document).ready(function() {
var availableCountries =<t t-esc="[country_id.name.replace('\'', '') for country_id in countries]"/>;
console.log(availableCountries)
$('.country_autocomplete').autocomplete({
source: availableCountries
});
});
</script>
</xpath>
<xpath expr="//form//select[@name='country_id']//parent::div" position="after">
<div t-attf-class="form-group #{error.get('country_id') and 'o_has_error' or ''} col-xl-6">
<label class="col-form-label" for="country_id">Country ID (Test)</label>
<input type="text" name="country_id"
t-attf-class="form-control #{error.get('country_id') and 'is-invalid' or ''} country_autocomplete"
t-att-value="country_id or partner.country_id"/>
</div>
</xpath>
</template>
</odoo>


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
Front-end Odoo language
frontend
Avatar
Avatar
1
aug 22
7929
Sensitive form field has not disabled autocomplete
autocomplete
Avatar
Avatar
4
nov 20
6967
What is we-button, we-collapse like things?
frontend
Avatar
0
júl 20
4168
URL
url frontend
Avatar
0
nov 23
2311
custom layout in form views
layout frontend
Avatar
Avatar
1
júl 23
4556
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