modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/components/table/TableSection.java | 1 - 1 file changed, 1 deletion(-)
New commits: commit acd4874236529bdae02946f948714247f08d30cf Author: John Mazzitelli mazz@redhat.com Date: Tue Nov 30 17:14:03 2010 -0500
the TableSection component is already at the details path - do not call next() otherwise, the details bookmarkableview component will get null when it asks for the viewpath's current path
diff --git a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/components/table/TableSection.java b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/components/table/TableSection.java index 1fc4fcd..4d5c96e 100644 --- a/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/components/table/TableSection.java +++ b/modules/enterprise/gui/coregui/src/main/java/org/rhq/enterprise/gui/coregui/client/components/table/TableSection.java @@ -207,7 +207,6 @@ public abstract class TableSection<DS extends RPCDataSource> extends Table<DS> i int id = Integer.parseInt(viewPath.getCurrent().getPath()); this.detailsView = getDetailsView(id); if (this.detailsView instanceof BookmarkableView) { - viewPath.next(); ((BookmarkableView) this.detailsView).renderView(viewPath); }
rhq-commits@lists.fedorahosted.org