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 to truncate text field ?

Subscribe

Get notified when there's activity on this post

This question has been flagged
fieldsxmlviewwidgettruncate
2 Replies
18955 Views
Avatar
HIGHCO - Nicolas Clavier

Hi folks,

Is there a way to truncate text of a fields.text() (in tree view especially), so that lines aren't huge in height ? I was thinking of a widget attribute in xml maybe ?

Thanks for your time. Nicolas

5
Avatar
Discard
Avatar
Quentin THEURET
Best Answer

You can use a fields.function with type='char'. The function to compute this field will give the fields.text value and truncate it.

Then, in the tree view, if you want the whole text, you display the fields.text otherwise, display the fields.function.

3
Avatar
Discard
HIGHCO - Nicolas Clavier
Author

Hi, thanks for the trick. it's a good work around if you are not willing to have inline editing (e.i. editable="bottom"). Because we can't have an editable function field.

Yannick Payot

This is not true, you can define the parameter fnct_inv to create the write method of function field. However, in your case I agree that it wouldn't be conveniant as you would need a truncated field only in view mode and a full text in edit mode. A widget might be the best choice.

HIGHCO - Nicolas Clavier
Author

I stumbled upon fnct_inv this morning to find that out .. how do you mean "a widget" .. writing a widget ?

Yannick Payot

Yes it is what I meant. Creating a widget that extends the base text widget and hides parts of the text only in view mode.

HIGHCO - Nicolas Clavier
Author

I'm ok to get into writing widgets but have no time for now. Would it be complex ? Any link examples / repo ?

HIGHCO - Nicolas Clavier
Author

I'm marking this answer as a solution because in the end it's the only quick way to achieve this. Except that the list view won't be editable inline. I'll show the function field inline, and the original text field in the form. Thank @all

Avatar
Cyril Gaspard (GEM)
Best Answer

Hi, there is a function which do that in 6.0, function truncate_data, you can find it here :

http://bazaar.launchpad.net/~openerp/openobject-addons/6.0/view/head:/mail_gateway/mail_gateway.py

update with new informations given by comment after :

if you can have status of the page, editable or browse, you can use function I gave before :

create a new field text which is updated by onchange with first you are already created.

in tree view in function of state of the page (editable or browse), one is visible, the second no.

Bye

3
Avatar
Discard
HIGHCO - Nicolas Clavier
Author

Hi, thanks for pointing this out to me but the idea here is to have a text field that can be fully edited inline, and that only shows so many characters when in browse mode. If the behavior doesn't exist, I'll post a feedback on http://feedback.openerp.com. These features are lacking, along with placeholders, rich text, etc.

Cyril Gaspard (GEM)

I update my answer

HIGHCO - Nicolas Clavier
Author

ok, sounds like the answer I was looking for. Still have to detect the field/view state, any hint ? is it a variable available in xml (a bit like active_id, parent, etc) ?

HIGHCO - Nicolas Clavier
Author

I can't find in the view the boolean context variable set_editable mentioned here : http://doc.openerp.com/trunk/developers/web/list_view/#editability-status

Cyril Gaspard (GEM)

I believe you do not understood what I would say by editable/browse. Editable is when you push a button create or edit, browse is a view in state read (I wanted just use terms you used yourself). By regarding your other new questions, attribute set_editable is to have a tree with lines editable without wizard form opened to modify value of fields, this is not the same thing. I do not if it is possible to have the status edit/read mode of a view. bye

HIGHCO - Nicolas Clavier
Author

Hi GEM, thanks for coming back to me. I understand both contexts are different. The link above discusses a javascript context accessed from the client side which could as well be a completely different context from the server side context. I created a new question to dig and clarify this topic.

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
Add a signature field in my XML view with Odoo 16 and custom modules
modules xml view widget signature
Avatar
Avatar
Avatar
Avatar
3
Oct 23
8728
How can i customize float field? Solved
fields view widget customizing class
Avatar
Avatar
1
Dec 22
19198
how to make Integer field as a <input type="range" in odoo V11 Solved
javascript fields xml widget v11
Avatar
2
Jul 18
9257
How to import the field sale_selectable via XML? Solved
error fields import xml view
Avatar
Avatar
1
Apr 15
5279
Custom field widget not working, showing default widget instead.
fields widget
Avatar
0
Aug 25
3273
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