Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
2 Besvarelser
4213 Visninger

Hi,

I have button, and I want to make it disabled after code execution:

="object"  class="btn-primary"

Is it possible to change class and append `disabled` after clicking button in call_function?

Avatar
Kassér
Bedste svar

adding class through js, write an onclick function for that particular button and write similar code inside it

var element = document. getElementById('#button_id');

element. classList. add('disabled');


Avatar
Kassér
Forfatter

is it possible to change class, from python code? in method `call_function` itself, after button is pressed?

Forfatter Bedste svar

One way to do this is:

Have a Binary field: is_button_enabled

Have 2 identical buttons is view display, like:


with atrs: invisible and check is_button_enabled field for button1 and button2

attrs="{'invisible': [('is_button_enabled', '=', False)]}

and

attrs="{'invisible': [('is_button_enabled', '=', True)]}

Avatar
Kassér
Related Posts Besvarelser Visninger Aktivitet
2
mar. 23
9787
2
mar. 23
2243
0
mar. 22
1492
1
maj 21
4207
1
sep. 20
3447