ComboBox:检索所选项的值

时间:2016-04-05 13:10:03

标签: gwt

我正在使用ComboBox for Dropdown。当我选择项目时,它不会选择它的值。 comboBox的代码:

final SimpleComboBox<String> combo = new SimpleComboBox<String>();
        combo.setForceSelection(true);
        combo.setTriggerAction(TriggerAction.ALL);
        combo.setFieldLabel("Calculation MethodNames");
        combo.add(cList);
        formPanel.add(combo);

我正在检索以下值:

fundSalesCreditCalcMethodDTO.setCalculationMethodName(calculationMethodName.getValue(calculationMethodName.getSelectedIndex()));

有人可以帮忙吗

0 个答案:

没有答案