我使用simpleComboBox作为下拉列表。但是它无法正常工作。当我选择项目时,下拉列表中的数据向左移动。我已经附加了图像,它看起来如何 请帮忙。
final SimpleComboBox<String> combo = new SimpleComboBox<String>();
combo.setForceSelection(true);
combo.setTriggerAction(TriggerAction.ALL);
combo.setFieldLabel("Calculation MethodNames ");
combo.add(cList);
答案 0 :(得分:0)
看起来输入宽度变得扭曲。我不确定到底发生了什么。虽然如果要修改输入元素css,可以使用哪个css来解决问题,首先检索元素。
ELement e gxtWidget.el().select("input").getItem(0).cast()
iirc ...然后将其用于getStyle()。set(something),它将改变宽度或对齐文本。