We are looking how we can format product descriptions and similar fields with html-tags line line breaks paragraphs unordered lists. Is there an option to add a HTML editor for such fields in Odoo 8?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 会計
- 在庫
- PoS
- Project
- MRP
この質問にフラグが付けられました
1
返信
53089
ビュー
Yes there is, just set the widget="html" in the field definition on the view like:
<field name="description" widget="html"/>
or
Define the field in the model like:
description = fields.Html('Description')
In case of a field set to tracking=True, all html code will be displayed in the history.
関連投稿 | 返信 | ビュー | 活動 | |
---|---|---|---|---|
|
0
12月 17
|
3629 | ||
|
1
6月 15
|
6566 | ||
|
1
12月 24
|
1054 | ||
login form
解決済
|
|
1
11月 23
|
1466 | |
|
1
8月 22
|
3858 |
Thanks Axel,
is there an option to do this without changing core code?
Ralf