use of com.google.gerrit.client.dashboards.DashboardsTable in project gerrit by GerritCodeReview.
the class ProjectDashboardsScreen method onInitUI.
@Override
protected void onInitUI() {
super.onInitUI();
dashes = new DashboardsTable(project);
FlowPanel fp = new FlowPanel();
fp.add(dashes);
add(fp);
dashes.setSavePointerId("dashboards/project/" + getProjectKey().get());
display();
}
Aggregations