我正在使用 wicket 1.5.7,我想在 DefaultDataTable 的单元格中创建一个链接。
所以我复制了这个页面中的例子,但我从检票口得到运行时错误:
最后一个原因:找不到关联的标记文件。ActionPanel:[ActionPanel [组件 id = 单元]]
这是我的一些代码:
public GroupsList(final PageParameters parameters)
{
ArrayList<IColumn> columns = new ArrayList<IColumn>();
columns.add(new AbstractColumn<Group>(new Model<String>("Actions"))
{
public void populateItem(Item<ICellPopulator<Group>> cellItem, String componentId,
IModel<Group> model)
{
cellItem.add(new ActionPanel(componentId, model));
}
});
add(new DefaultDataTable("table", columns, new GroupDataProvider(), 8));
}
这是我的 ActionPanel
class ActionPanel extends Panel
{
public ActionPanel(String id, IModel<Group> model)
{
super(id, model);
add(new Link("select")
{
@Override
public void onClick()
{
PageParameters pp = new PageParameters();
setResponsePage(new HomePage(pp));
}
});
}
}
任何想法的根本原因是什么?