Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
12570 Lượt xem

https://www.odoo.com/documentation/9.0/reference/views.html

In the above documentation we can see there is an attribute named "args" associated with button elements. But the document lacks more details about using this attribute. Instead it just says "see type". I tried to find the usage of this attribute by checking Odoo's core modules, but ends with no result.

  1. Is it something we can use to pass the data from view file to python code?

  2. What is the syntax? (key/value dict)

  3. How to get access the passed data in Python?

  4. What is the difference with args and context?

Any help would be appreciable!


Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Hi,

Context

Context is a dictionary carrying session data. Context can be used in the server or the client side. In your view you can add new values like this:

<button name="apply" context="{'key': value}" />

and get this value in the server side like this:

value = self.env.context.get('key')

attrs

attrs is a dictionary carrying some field option like invisible, required and readonly. attrs allow you to define condition for each option like this:

  <field name="name" attrs="{'invisible': [('condition', '=', True)]}">

The field name will be invisible if condition is true.

Best regards.

Ảnh đại diện
Huỷ bỏ
Tác giả

@Bejaoui Thanks for your help! But I was asking about "args" not "attrs".

Is this still valid ?

Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 3 15
3180
0
thg 11 23
1564
1
thg 7 22
3251
2
thg 5 22
2837
1
thg 5 22
3517