以下是我的代码,但它只显示自动完成中的一列,但我希望以表格形式显示多列的数据[简而言之,我想在表格格式中显示建议框]。我怎么能这样做? 在此先感谢请提出建议......
FlowPanel panel = new FlowPanel();
initWidget(panel);
final BulletList list = new BulletList();
list.setStyleName("token-input-list-facebook");
final ListItem item = new ListItem();
item.setStyleName("token-input-input-token-facebook");
final TextBox itemBox = new TextBox();
itemBox.getElement().setAttribute( "style", "outline-color: -moz-use-text-color; outline-style: none; outline-width: medium;");
final SuggestBox box = new SuggestBox(getSuggestions(), itemBox);
box.getElement().setId("suggestion_box");
item.add(box);
list.add(item);