view gnv/src/main/webapp/WEB-INF/jsp/index.jsp @ 409:df78178e1180

Moved user interface creation to an own action. This makes avoids code duplication and makes it easier to write new action to handle special interactions, because there is no need for parsing the describe document and creating the user interface after this. gnv/trunk@599 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 22 Jan 2010 11:28:25 +0000
parents b5733f9f386b
children 9602f4bffc07
line wrap: on
line source
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@page import="java.util.Collection"%>
<%@page import="de.intevation.gnv.artifactdatabase.objects.ArtifactObject"%>
<%@page import="de.intevation.gnv.action.sessionmodel.SessionModel"%>
<%@page import="de.intevation.gnv.action.sessionmodel.SessionModelFactory"%>
<%@page import="java.util.Iterator"%>
<%  Object ui              = request.getAttribute("ui");
    Object staticui        = request.getAttribute("staticui");
    boolean furthertargets = true;
      
    Object furthertargetsObject = request.getAttribute("furthertargets");
    if (furthertargetsObject != null){
        furthertargets = ((Boolean)furthertargetsObject).booleanValue();
    }
%>
    <div>
    <%if (staticui == null){ %>
        <jsp:include page="includes/display_fis_inc.jsp"></jsp:include>
    <%} else {%>
        <%=staticui.toString()%>
    <%}%>
    
    <%-- render the dynamic part to feed the state and advance to the next state --%>
    <%if (ui != null){%>
        <div id="timeseriesfilter">
            <form id="fisSelectionForm" onsubmit="displayOverlay()" action="<%=response.encodeURL("next.do")%>") method="post">
               <fieldset>
                <%=ui != null ? ui.toString().replaceAll("&nbsp;", "") : "" %>
               
                <%if(furthertargets){%>
                <input type="submit" value="<bean:message key="gnviewer.select.button"/>"/>
                <%}%>
                </fieldset>
            </form>
        </div>
    <%}%>
    </div>

    <%-- render chart options if existing for this state --%>
    <jsp:include page="includes/display_diagramm_inc.jsp"></jsp:include>

    <%-- render export options if existing for this state --%>
    <jsp:include page="includes/display_export_inc.jsp"></jsp:include>

http://dive4elements.wald.intevation.org