SimpleComboBox の展開時に出る影を消したいです。添付画像のように影ができます。
以下は私のコードです
private SimpleComboBox<String> getSimpleComboBox(List<String> valuesOfComboBox, String objectToDisplay, boolean isVisible, String fieldLabel, boolean isTypeAhead, TriggerAction triggerAction, String id, boolean isShadowVisible){
SimpleComboBox<String> comboBoxForUserAccount = new SimpleComboBox<String>();
comboBoxForUserAccount.setVisible(isVisible);
comboBoxForUserAccount.setShadow(false);
if(valuesOfComboBox!=null)
comboBoxForUserAccount.add(valuesOfComboBox);
if(objectToDisplay!=null)
comboBoxForUserAccount.setSimpleValue(objectToDisplay);
comboBoxForUserAccount.setFieldLabel(fieldLabel);
comboBoxForUserAccount.setTypeAhead(isTypeAhead);
comboBoxForUserAccount.setTriggerAction(triggerAction);
if(id!=null)
comboBoxForUserAccount.setId(id);
return comboBoxForUserAccount;
}
ありがとう