我的dxCheckGroupBox
里面有cxRadioButtons
个dxCheckGroupBox
。
cbaToggleChildrenEnabledState
的复选框将其状态(cxRadioButtons
)从启用切换为禁用。
如何禁用dxCheckGroupBox
内的某些dxCheckGroupBox
,以便它们保留
点击OnFormShow
复选框后停用?
我尝试在dxCheckGroupBox
事件中按代码禁用按钮,但它不起作用。
只要我点击function functionHours(){
var time = new Date();
var hours = time.getHours() > 12 ? time.getHours() - 12 : time.getHours();
if (time.getHours() > 12) {
hours = time.getHours() - 12;
}
else {
hours = time.getHours();
}
if(hours < 10) {
return "0" + hours;
}
else {
return hours;
}
}
console.log(functionHours());
复选框,它们就会全部启用。
答案 0 :(得分:1)
设置CheckAction
;
dxCheckGroupBox
属性
dxCheckGroupBox1.CheckBox.CheckAction := cbaNone;
您将能够禁用/启用控件。