Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

How many widget we can use in odoo v8?

Subscribe

Get notified when there's activity on this post

This question has been flagged
widgetodoo
9 Replies
45576 Views
Avatar
Anil Kesariya

Hello Everyone,

How many widget available for direct use in odoo v8.

I need list of all widget with description.

Thanks in advance.

 

8
Avatar
Discard
Sehrish

You can also create your custom widget : https://learnopenerp.blogspot.com/2020/08/time-counter-countdown-timer-custom-widget-odoo.html

Avatar
Stephen Mack
Best Answer

It looks like here is a pretty exhaustive list.

6
Avatar
Discard
Anil Kesariya
Author

Thanks

Avatar
Anil Kesariya
Author Best Answer

Hello All,

These are the widget list used in odoo v8 that can make our developement more easy and flexible and usable, description will be udpate soon.

many2many_tags

one2many_list

selection

progressbar

selection

statusbar

handle

monetary

mail_thread

statinfo

contact

html

mail_followers

url

radio

email

one2many

many2manyattendee

priority

integer

sparkline_bar

many2many_binary

image

many2many_kanban

char_domain

gauge

float_time

 

12
Avatar
Discard
Avatar
Demirel yakito
Best Answer

Refer this link:

http://ludwiktrammer.github.io/odoo/form-widgets-many2many-fields-options-odoo.html

I hope this will usefull for you.

3
Avatar
Discard
Anil Kesariya
Author

These are only for many2many field. I need all the widgets those can be use for any type of field.

Avatar
Hilar Andikkadavath
Best Answer

Here are the latest widgets and its following classes usable in odoo js to include or extend also use syntax widget="any_widget_name" with odoo views,

    'char' : 'instance.web.form.FieldChar', 

    'id' : 'instance.web.form.FieldID',

    'email' : 'instance.web.form.FieldEmail',

    'url' : 'instance.web.form.FieldUrl',

    'text' : 'instance.web.form.FieldText',

    'html' : 'instance.web.form.FieldTextHtml',

    'char_domain': 'instance.web.form.FieldCharDomain',

    'date' : 'instance.web.form.FieldDate',

    'datetime' : 'instance.web.form.FieldDatetime', 

    'selection' : 'instance.web.form.FieldSelection', 

    'radio' : 'instance.web.form.FieldRadio',

    'many2one' : 'instance.web.form.FieldMany2One',

    'many2onebutton' : 'instance.web.form.Many2OneButton',

    'many2many' : 'instance.web.form.FieldMany2Many',

    'many2many_tags' : 'instance.web.form.FieldMany2ManyTags',

    'many2many_kanban' : 'instance.web.form.FieldMany2ManyKanban',

    'one2many' : 'instance.web.form.FieldOne2Many',

    'one2many_list' : 'instance.web.form.FieldOne2Many',

    'reference' : 'instance.web.form.FieldReference',

    'boolean' : 'instance.web.form.FieldBoolean',

    'float' : 'instance.web.form.FieldFloat',

    'percentpie': 'instance.web.form.FieldPercentPie',

    'barchart': 'instance.web.form.FieldBarChart',

    'integer': 'instance.web.form.FieldFloat',

    'float_time': 'instance.web.form.FieldFloat',

    'progressbar': 'instance.web.form.FieldProgressBar',

    'image': 'instance.web.form.FieldBinaryImage',

    'binary': 'instance.web.form.FieldBinaryFile',

    'many2many_binary': 'instance.web.form.FieldMany2ManyBinaryMultiFiles',

    'statusbar': 'instance.web.form.FieldStatus',

    'monetary': 'instance.web.form.FieldMonetary',

    'many2many_checkboxes': 'instance.web.form.FieldMany2ManyCheckBoxes',

    'x2many_counter': 'instance.web.form.X2ManyCounter',

    'priority':'instance.web.form.Priority',

    'kanban_state_selection':'instance.web.form.KanbanSelection',

    'statinfo': 'instance.web.form.StatInfo',

1
Avatar
Discard
Avatar
Vijay Panchani R.
Best Answer

Hello Everyone,


There are some more widget which we can use in odoo development. I'm not sure that these all are proper work in odoo v8.

But, I'm using in odoo v9.


many2many_checkboxes

float

many2many

percentpie

date

phone

password

1
Avatar
Discard
Avatar
Odoo For Beginners
Best Answer

Hello everyone. Here we have the widgets and their descriptions.

Monetary The widget=”monetary” was introduced in Odoo 9.0 and is not available in previous versions. We using it when we want to create a fielfs that unit of measure have linked to a currency like for example “amount_total_signed“.

Statusbar The widget =”statusbars” gives you the ability to show the progress to the user in a visual way. Statusbars are ideal to use in combination with buttons which will modify the state where a record is in.

Handle The widget=”handle” gives you the option to re-order lines, making records drag and droppable. When you need to be able to rearrange the order of a field rows, you want to enable user to drag the line up and down the list. This is especially when the rows represent something of which order is important.

For more details. Please check out our blog : https://odooforbeginnersblog.wordpress.com/2017/03/09/widgets-in-odoo/#more-839

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

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

Sign up
Related Posts Replies Views Activity
Invoice form View 'Total' label to 'Gross' odoo 17 Solved
invoice widget odoo
Avatar
Avatar
1
Oct 24
2212
How to add widget to boolean field??
widget field odoo
Avatar
Avatar
1
Mar 25
8120
ODOO9: How to work with context in widgets
widget context odoo
Avatar
0
Jan 24
5322
Odoo9: Binary field takes a lot of spave in the view Solved
widget size odoo
Avatar
Avatar
1
May 16
3959
(!!C-o-p-a!!)¿Cómo comunicarse con Copa Airlines en Panamá?
odoo
Avatar
0
Nov 25
211
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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