Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

Add js_class attribute to an existing view.

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
extensionformviewodoo12
1 Balas
8660 Tampilan
Avatar
kylesentient@gmail.com

I created an extension of the form view that adds a button to the toolbar similar to the HelloworldEvolution view from this video here: 

https://www.youtube.com/watch?v=SIoljYJhTqk

Github repo for the video:

https://github.com/Polymorphe57/hello_world_view_code

The extension just adds a button to the toolbar that doesn't do anything yet. Now I'd like to use this extension in an existing view, like the stock.picking form view from the Inventory app.

I tried inheriting the view and adding the js_class attribute to it using:

<xpath expr="//form" position="attributes">
    <attribute name="js_class">my_formview_extension</attribute>
</xpath>

But nothing gets added to the form. No error is thrown either. Anyone can help?

Thanks!

0
Avatar
Buang
Avatar
La Jayuhni Yarsyah
Jawaban Terbai

Hi,,

Its clearly described in the repository that "This repository contains the code of the hello world view that was presented at the Odoo Experience 2018 during the talk entitled "Visualizing Data in Odoo: How to Create a New View" , you can clearly read at  https://github.com/Polymorphe57/hello_world_view_code/blob/master/README.md

It create new type of view!

But based on your syntax,, you try to use in "FORM" view,, it wouldn't be executed!

1
Avatar
Buang
kylesentient@gmail.com
Penulis

Then my wording must have been unclear, and I apologize for that. What I meant to say was that I used some of the references from that video to create an extension of the form view, similarly to the HelloWorldEvolution extension that the developper in the video created for the HelloWorld View. I did not create a helloworld view, I extended the Form View to add a couple buttons to it.

La Jayuhni Yarsyah

I think it can do by add button on form header in xml (for simple ways)

Ex:

<xpath expr="//form/header">

<button name="ex_btn_action" type="object" string="EXAMPLE BUTTON" />

</xpath>

and if you wanna to no action when clicked,, you just only need to define method in python that only just return False/None Value

Ex:

def ex_btn_action(self):

return None

But if you wanna advanced way to add button at the toolbar and wanna to apply to all form view ,, you must inherit odoo web js class "web.FormRenderer"

How to inheriting js class, you can read here as reference:

https://www.odoo.com/documentation/11.0/reference/javascript_cheatsheet.html#modifying-a-main-widget-from-the-interface

https://odoo-development.readthedocs.io/en/latest/dev/pos/gui.html

Regards

La Jayuhni Yarsyah

sorry miss for the example

<xpath expr="//form/header" position="inside">

<button name="ex_btn_action" type="object" string="EXAMPLE BUTTON" />

</xpath>

kylesentient@gmail.com
Penulis

Thank you, Yarsyah. I'll be sure to try all of these things and see which one fits my needs best :)

Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
form view was changed when reloading the page
formview odoo12
Avatar
Avatar
2
Jul 22
1494
Inhrit models and display in new form view
formview odoo odoo12
Avatar
Avatar
Avatar
3
Des 19
3451
Create new record by opening a new form on a button click Diselesaikan
form button formview odoo12
Avatar
Avatar
Avatar
2
Jul 23
784
Display multiple views at a time
formview odoo10 odoo11 odoo12
Avatar
0
Des 19
5340
How do I select the parent record automatically when I open the form-view created by a one2 many relationship? Diselesaikan
one2many formview one2many_list odoo12
Avatar
Avatar
1
Jul 19
5572
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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