如何在保存之前验证ComboBox中是否有选定的项目?如果没有选定的项目,如何将焦点设置在ComboBox上?
答案 0 :(得分:1)
作为保存程序的一部分,只需检查以确保选择了某些内容。像这样:
if(myComboBox.selectedIndex >-1){
Alert.show('You must select an item in myComboBox','Error');
return;
}
// perform other save operations
答案 1 :(得分:0)
将焦点设置为comboBox:
focusManager.setFocus(myComboBox);