我有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"
})
如何检查单选按钮是否被选中?
答案 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"
})
get_property('my_radio', 1, {'property' : 'checked'})