diff options
author | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-01-07 17:25:38 +0100 |
---|---|---|
committer | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-01-27 16:34:14 +0100 |
commit | fb6e40832df5182ae1ebd7555583caed174e8776 (patch) | |
tree | eb0affabf0f6a1768d614f0949c73ad735405fdd /id/ConfigWebTool/src/main/webapp | |
parent | 6ef9296d79741b455530f70262003fefd51ee85c (diff) | |
download | moa-id-spss-fb6e40832df5182ae1ebd7555583caed174e8776.tar.gz moa-id-spss-fb6e40832df5182ae1ebd7555583caed174e8776.tar.bz2 moa-id-spss-fb6e40832df5182ae1ebd7555583caed174e8776.zip |
oa attr configuration revisited
Diffstat (limited to 'id/ConfigWebTool/src/main/webapp')
-rw-r--r-- | id/ConfigWebTool/src/main/webapp/jsp/editOAGeneral.jsp | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/id/ConfigWebTool/src/main/webapp/jsp/editOAGeneral.jsp b/id/ConfigWebTool/src/main/webapp/jsp/editOAGeneral.jsp index d12a47b9e..57728845c 100644 --- a/id/ConfigWebTool/src/main/webapp/jsp/editOAGeneral.jsp +++ b/id/ConfigWebTool/src/main/webapp/jsp/editOAGeneral.jsp @@ -313,16 +313,21 @@ onclick="oaStork();" id="OAuseSTORKLogon" /> <div id="stork_block"> - <s:textfield name="storkOA.attributes" - value="%{storkOA.attributes}" - labelposition="left" - key="webpages.moaconfig.stork.requestedattributes" - cssClass="textfield_long"/> <s:select list="#{1:'1', 2:'2', 3:'3', 4:'4'}" value="#{storkOA.qaa}" name="storkOA.qaa" key="webpages.moaconfig.stork.qaa" labelposition="left" /> + <h4>Attributes</h4> + <table> + <tr><th>verwendet</th><th>Attributname</th><th>mandatory</th></tr> + <s:iterator value="storkOA.helperAttributes" status="stat"> + <tr><td><s:checkbox name="storkOA.helperAttributes[%{#stat.index}].used" value="%{used}" /><s:hidden name="storkOA.helperAttributes[%{#stat.index}].name" value="%{name}" /></td> + <td><s:property value="%{name}" /></td> + <td><s:checkbox name="storkOA.helperAttributes[%{#stat.index}].mandatory" value="%{mandatory}" /></td> + <td><input type="button" value="<%=LanguageHelper.getGUIString("webpages.moaconfig.stork.attributes.remove", request) %>" onclick='this.parentNode.parentNode.parentNode.removeChild(this.parentNode.parentNode);'/></td></tr> + </s:iterator> + </table> </div> </div> |