GWT ListBOx更改文本填充

时间:2014-08-12 11:49:38

标签: gwt listbox cellpadding

我正在使用GWT的ListBox让用户从项目列表中选择他们的输入。当列表框显示在我的浏览器(Chrome)中时,单词的结尾与列表框本身的末尾之间似乎有相当大的空间。

例如:

enter image description here

这是我用于将列表框添加到FlexTable的代码:

    final ListBox listBox = new ListBox();
    listBox.setVisibleItemCount(1);
    listBox.addItem("");
    listBox.setEnabled(enabled);
    listBox.setSelectedIndex(selectedIndex);
    setWidget(1, columnIndex, listBox);
    getFlexCellFormatter().setStylePrimaryName(1, columnIndex, cellStyle);

如何删除单词结尾与列表框末尾之间的额外空格?

由于

1 个答案:

答案 0 :(得分:0)

将宽度设置为listBox。或使用选择列表框:http://jdramaix.github.io/gwtchosen/并设置宽度。

listBox.setWidth("10px");