如何检查Azle中的单选按钮是否已选中

时间:2018-07-06 16:13:11

标签: azle

我有2个单选按钮,允许用户选择是或否:

add_radiobutton('option_cell', 1, {
     "this_class" : "my_radio",
     "text" : "YES",
     "text_class" : "radio_label",
     "name" : "yes_no_radio"
     })
add_radiobutton('option_cell', 2, {
     "this_class" : "my_radio",
     "text" : "NO",
     "text_class" : "radio_label",
     "name" : "yes_no_radio"
     }) 

如何检查单选按钮是否被选中?

1 个答案:

答案 0 :(得分:0)

您可以使用 get_property 函数:

添加单选按钮:

add_radiobutton('option_cell', 1, {
     "this_class" : "my_radio",
     "text" : "YES",
     "text_class" : "radio_label",
     "name" : "yes_no_radio"
     })
add_radiobutton('option_cell', 2, {
     "this_class" : "my_radio",
     "text" : "NO",
     "text_class" : "radio_label",
     "name" : "yes_no_radio"
     }) 

enter image description here

get_property('my_radio', 1, {'property' : 'checked'})

enter image description here