Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/gwt/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/extjs/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
删除SimpleCompoBox ext gwt展开时显示的阴影_Gwt_Extjs_Gwt2_Gxt - Fatal编程技术网

删除SimpleCompoBox ext gwt展开时显示的阴影

删除SimpleCompoBox ext gwt展开时显示的阴影,gwt,extjs,gwt2,gxt,Gwt,Extjs,Gwt2,Gxt,我想移除出现在expand on SimplemboBox上的阴影。 我得到的阴影作为附加图像 下面是我的代码 private SimpleComboBox<String> getSimpleComboBox(List<String> valuesOfComboBox, String objectToDisplay, boolean isVisible, String fieldLabel, boolean isTypeAhead, TriggerAction trigg

我想移除出现在expand on SimplemboBox上的阴影。 我得到的阴影作为附加图像

下面是我的代码

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;
    }
private SimpleCompoBox GetSimpleCompoBox(列表值组合框,字符串对象显示,布尔值可见,字符串字段标签,布尔值isTypeAhead,TriggerAction TriggerAction,字符串id,布尔值isShadowVisible){
SimpleComboBox ComboxForUserAccount=新SimpleComboBox();
comboBoxForUserAccount.setVisible(isVisible);
comboBoxForUserAccount.setShadow(false);
if(valuesOfComboBox!=null)
comboBoxForUserAccount.add(值为ComboBox);
if(objectToDisplay!=null)
comboBoxForUserAccount.setSimpleValue(objectToDisplay);
comboBoxForUserAccount.setFieldLabel(fieldLabel);
comboBoxForUserAccount.setTypeAhead(isTypeAhead);
comboBoxForUserAccount.setTriggerAction(triggerAction);
如果(id!=null)
comboBoxForUserAccount.setId(id);
返回comboBoxForUserAccount;
}
谢谢