Mercurial > dive4elements > gnv-client
changeset 713:c84147a3105c
Fixed a bug when performing the html formular to adjust the chart output in IE (issue259).
gnv/trunk@984 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Mon, 26 Apr 2010 09:36:40 +0000 |
parents | 4949379c8ea9 |
children | 21735fb8d29b |
files | gnv/ChangeLog gnv/src/main/webapp/WEB-INF/jsp/includes/display_diagramm_options_inc.jsp |
diffstat | 2 files changed, 11 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/gnv/ChangeLog Mon Apr 26 08:55:50 2010 +0000 +++ b/gnv/ChangeLog Mon Apr 26 09:36:40 2010 +0000 @@ -1,3 +1,13 @@ +2010-04-26 Ingo Weinzierl <ingo.weinzierl@intevation.de> + + Issue259 + + * src/main/webapp/WEB-INF/jsp/includes/display_diagramm_options_inc.jsp: + Added target 'chart' as url request parameter when performing the html + form to change the chart output. The reason for doing this is, that the + InternetExplorer seems no to add the value of <input type="image"...> + elements to the request object which is sent to the server. + 2010-04-26 Ingo Weinzierl <ingo.weinzierl@intevation.de> Issue225
--- a/gnv/src/main/webapp/WEB-INF/jsp/includes/display_diagramm_options_inc.jsp Mon Apr 26 08:55:50 2010 +0000 +++ b/gnv/src/main/webapp/WEB-INF/jsp/includes/display_diagramm_options_inc.jsp Mon Apr 26 09:36:40 2010 +0000 @@ -65,7 +65,7 @@ </div> <%}%> - <form id="outputOptionsForm" method="post" action="<%=response.encodeURL("changeOptions.do")%>"> + <form id="outputOptionsForm" method="post" action="<%=response.encodeURL("changeOptions.do?target="+target)%>"> <table class="static"> <%if (outputMode != null && outputMode.getOutputParameters() != null && !outputMode.getOutputParameters().isEmpty()){ Iterator<OutputParameter> it = outputMode.getOutputParameters().iterator();