diff flys-client/src/main/java/de/intevation/flys/client/client/ui/ParameterList.java @ 582:78907f0fb939

Added dummy report panel. flys-client/trunk@2170 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 20 Jun 2011 16:35:43 +0000
parents 830e4720caad
children 942bd0e7e332
line wrap: on
line diff
--- a/flys-client/src/main/java/de/intevation/flys/client/client/ui/ParameterList.java	Mon Jun 20 16:25:48 2011 +0000
+++ b/flys-client/src/main/java/de/intevation/flys/client/client/ui/ParameterList.java	Mon Jun 20 16:35:43 2011 +0000
@@ -90,8 +90,10 @@
     protected VLayout oldItems;
     protected VLayout currentItems;
     protected VLayout exportModes;
+    protected VLayout report;
     protected Canvas  helperPanel;
     protected Canvas  tablePanel;
+    protected Canvas  reportPanel;
 
     public ParameterList(FLYS flys, CollectionView cView, String title) {
         super(title);
@@ -105,6 +107,7 @@
         oldItems          = new VLayout();
         currentItems      = new VLayout();
         exportModes       = new VLayout();
+        report            = new VLayout();
 
         addParameterChangeHandler(this);
 
@@ -130,6 +133,7 @@
         oldItems          = new VLayout();
         currentItems      = new VLayout();
         exportModes       = new VLayout();
+        report            = new VLayout();
 
         init();
 
@@ -159,6 +163,12 @@
         left.addMember(oldItems);
         left.addMember(currentItems);
         left.addMember(exportModes);
+        left.addMember(report);
+
+        reportPanel = new Canvas();
+        //reportPanel.setContents("<strong>I was here!</strong>");
+        reportPanel.setHeight("*");
+        report.addMember(reportPanel);
 
         // This canvas is used to render helper widgets
         helperPanel = new Canvas();

http://dive4elements.wald.intevation.org