İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

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

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

Button not clickable in list view

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
v7treebuttonclickable
1 Cevapla
12843 Görünümler
Avatar
marc@k-ssuto.com

Hello Community,

I try to add a button in a list; the view appears, the button appears too but it is not clickable. It's like in a ghost state and I am unable to have the focus on it.

Here the code :

<record id="pkg-cfg_lines_tree_tree" model="ir.ui.view">
  <field name="name">pkg-cfg.tree</field>
  <field name="model">pkg-cfg_lines</field>
  <field name="view_mode">form</field>
  <field name="view_type">form</field>
  <field name="arch" type="xml">
    <tree string="Tree"  version="7.0" >
      <field name="pname" readonly="1" />
      <field name="chse" readonly="1"/>
      <button name="add_line" string="Add" type="object" icon="gtk-go-forward" />
    </tree>
  </field>
</record>

and the python code for the function :

   def add_line(self, cr, uid, ids, context):
        print "ENTER IN pkg-cfg_lines.add_line"
        return True

When I try to click on the button, the action is never called....

I also tried using a button with action type for the button :

< button name="%(add_line)d" string="Add" type="action" icon="gtk-go-forward" />

with the following action :

<record id="add_line" model="ir.actions.server">
    <field name="type">ir.actions.server</field>
    <field name="name">Testing</field>
    <field name="condition">True</field>
    <field name="state">code</field>
    <field name="model_id" ref="model_sale_configure_container"/>
    <field eval="5" name="sequence"/>
    <field name="code">action=obj.add_line(context=context)</field>                                                                                                       
</record>

Any ideas ?

Thanks in advance, Marc

8
Avatar
Vazgeç
Vaibhav

You mentioned view_type and view_mode while displaying tree view.Is there need to mentioned it? Please try without those 2 lines.< button name="%(add_line)d" string="Add" type="action" icon="gtk-go-forward" /> This is generally used to call wizard from onclick of button

marc@k-ssuto.com
Üretici

Hello, Yes I also tried without these 2 lines => no success.

I know about my second try (with "%(add_line)d"), it is generally used to call a wizard but it is also a method to call an action ;-)

Avatar
Xsias
En İyi Yanıt

You need to be in the reading mode, not the edit mode of your entry. We have the same issue.

EDIT

Hi sven,

So I can you launch the view in reading mode ?

Did you manage to solve your issue ? Marc Cassuto (SFL)

Yes, we have made some dirty hack : In place of the button, we have put a checkbox (fields.boolean) with an onchange on it.

0
Avatar
Vazgeç
marc@k-ssuto.com
Üretici

Hi sven,

So I can you launch the view in reading mode ?

Did you manage to solve your issue ?

Xsias

Yes, we have made some dirty hack : In place of the button, we have put a checkbox (fields.boolean) with an onchange on it.

marc@k-ssuto.com
Üretici

Hello Sven,

yes, we also thought about this solution... but this is a dirty one, I agree and there is some GUI glitch with it....

Enjoying the discussion? Don't just read, join in!

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

Üye Ol
İlgili Gönderiler Cevaplar Görünümler Aktivite
can i add button to tree view ? Çözüldü
v7 tree button
Avatar
Avatar
Avatar
Avatar
Avatar
4
Ara 23
80187
[v7] oe_highlight in treeview
v7 tree button oe_highlight
Avatar
Avatar
1
Mar 15
5807
How to create a button for every row in view tree
treeview tree button
Avatar
Avatar
1
Eyl 18
11673
Download binary button
form v7 button
Avatar
0
Mar 15
4635
Button in tree view as image.
image tree button
Avatar
0
Mar 15
4134
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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