嗨,我是 GWT 的新手,所以也是 GWTP 的新手。
我尝试使用 CellTables,并决定首先在 developer.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 ......而且我没有收到任何错误......
在此先感谢您的帮助!