Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
4786 Widoki

<button name="add_workorder" type="object" string="Add Workorder" confirm="Are you sure add Workorder?">

<!-- attrs="{'invisible': [('state','!=','draft')]}" -->

</button>


Awatar
Odrzuć
Najlepsza odpowiedź

Hello delgertsetseg,


Put button in the tree view and apply attrs on it.

You have to also add state field in the tree view because attrs on state field so you can invisible it.

For Ex:-

<tree>

     <field name="state" invisible="1"/>

    <button name="add_workers" type="object" string="Add Workers" attrs="{'invisible' : [('state', '!=', 'draft')]}" confirm="Are You sure you want to Add Workers"/>

</tree>


Hope it will works for you.

Thanks,

Awatar
Odrzuć
Autor

Thanks, i will try

Autor

"add_workorder" button is visible , do you have anything idea?

This attrs means, if state is not in draft stage then button is invisible. When the state is draft, button will visible. You want to hide button on draft state or only show button on draft state ?

AFAIK, attrs doesn't work on tree view.

Autor

Okey , I show button on only draft state

Powiązane posty Odpowiedzi Widoki Czynność
4
gru 23
38226
0
kwi 18
3677
1
kwi 24
2324
1
gru 22
6657
0
lut 19
14