I have hided the create button using following view,
<tree create="false" edit="false">
It is working perfect, But I need to hide the create button dynamic way like this,
<tree attrs="{'create':[("uid",'=',1)]}" edit="false">
Thanks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I have hided the create button using following view,
<tree create="false" edit="false">
It is working perfect, But I need to hide the create button dynamic way like this,
<tree attrs="{'create':[("uid",'=',1)]}" edit="false">
Thanks
Tansadio,
you can not add an attrs attribute like this in tree tag, infact you can keep <tree create="false" edit="false"> and add a new customized button as:
<header>
<button string="Create" class="oe_button oe_highlight" special="create" name="your_Function" attrs="{'invisible': YOUR_CONDITION}"/>
</header>
and then redirect to form view to create a new record...
Here you can keep your condition also for hiding the button.
Hope it Helps!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
1
May 24
|
563 | ||
|
3
Jul 22
|
1843 | ||
|
1
Feb 17
|
4595 | ||
|
1
Mar 15
|
3351 | ||
|
1
Mar 15
|
15007 |