嗨,我是GWT的新手,也是GWTP的新手。
我尝试使用CellTables,我决定首先在developers.google.com/web-toolkit/doc/2.4/DevGuideUiCellWidgets#celltable上构建一个关于GWT文档的简单文档。 我改编了一些与GWTP MVP设计相匹配的东西。
首先,我在View.ui.xml文件中创建了Celltable:
xmlns:c="urn:import:com.google.gwt.user.cellview.client">
<g:HTMLPanel>
<c:CellTable pageSize='15' ui:field='cellTable' />
</g:HTMLPanel>
然后,我创建了一个班级联系人:
public class Contact {
private final String address;
private final String name;
public Contact(String name, String address) {
this.name = name;
this.address = address;
}
public String getAddress() {
return address;
}
public String getName() {
return name;
}
}
在我的View.java文件中:
@UiField(provided=true) CellTable<Contact> cellTable = new CellTable<Contact>();
public CellTable<Contact> getCellTable() {
return cellTable;
}
最后在我的Presenter.java文件中:
public interface MyView extends View {
CellTable<Contact> getCellTable();
}
@Override
protected void onReset() {
super.onReset();
// Create name column.
TextColumn<Contact> nameColumn = new TextColumn<Contact>() {
@Override
public String getValue(Contact contact) {
return contact.getName();
}
};
// Create address column.
TextColumn<Contact> addressColumn = new TextColumn<Contact>() {
@Override
public String getValue(Contact contact) {
return contact.getAddress();
}
};
// Add the columns.
getView().getCellTable().addColumn(nameColumn, "Name");
getView().getCellTable().addColumn(addressColumn, "Address");
// Set the total row count.
getView().getCellTable().setRowCount(CONTACTS.size(), true);
// Push the data into the widget.
getView().getCellTable().setRowData(0, CONTACTS);
}
对我来说一切似乎都很好但是当我尝试这段代码时没有显示CellTable ......而且我没有错误......
提前感谢您的帮助!
答案 0 :(得分:0)
看起来你没有使用/为你的CellTable注册DataProvider。 GWT CellWidgets基于DataProvider / DIsplay模式。所以CellTable只是DataProvider的显示器。一个DataProvider可以有多个显示器。
你不需要写:
// Set the total row count.
getView().getCellTable().setRowCount(CONTACTS.size(), true);
// Push the data into the widget.
getView().getCellTable().setRowData(0, CONTACTS);
当您使用新数据更新DataProvider时,您需要将CellTable注册为DataProvider的显示(例如ListDataProvider),而不是调用刷新方法。