diff options
author | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-01-07 15:07:32 +0100 |
---|---|---|
committer | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-01-27 16:34:14 +0100 |
commit | 3da3836bcd77a23ca00df2bdb088e63b47cc6499 (patch) | |
tree | 3260298328682d6eed3030128082195f18dd7b8a /id/ConfigWebTool/src/main/webapp | |
parent | 7c39d9e0cff15a87678bf68d6d754ee1e720ca12 (diff) | |
download | moa-id-spss-3da3836bcd77a23ca00df2bdb088e63b47cc6499.tar.gz moa-id-spss-3da3836bcd77a23ca00df2bdb088e63b47cc6499.tar.bz2 moa-id-spss-3da3836bcd77a23ca00df2bdb088e63b47cc6499.zip |
mandatory field in global config
Diffstat (limited to 'id/ConfigWebTool/src/main/webapp')
-rw-r--r-- | id/ConfigWebTool/src/main/webapp/jsp/editMOAConfig.jsp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/id/ConfigWebTool/src/main/webapp/jsp/editMOAConfig.jsp b/id/ConfigWebTool/src/main/webapp/jsp/editMOAConfig.jsp index aff2028ac..078e5f681 100644 --- a/id/ConfigWebTool/src/main/webapp/jsp/editMOAConfig.jsp +++ b/id/ConfigWebTool/src/main/webapp/jsp/editMOAConfig.jsp @@ -245,9 +245,10 @@ <input type="button" value="<%=LanguageHelper.getGUIString("webpages.moaconfig.stork.newpeps", request) %>" onclick='newPeps();' /> <h4><%=LanguageHelper.getGUIString("webpages.moaconfig.stork.attributes.heading", request) %></h4> <table> - <tr><th>Attribute Name</th></tr> - <s:iterator value="storkconfig.attributes" var="attr" status="stat"> - <tr><td><s:textfield name="storkconfig.attributes[%{#stat.index}]"/></td> + <tr><th>Attribute Name</th><th>Mandatory</th></tr> + <s:iterator value="storkconfig.attributes" status="stat"> + <tr><td><s:textfield name="storkconfig.attributes[%{#stat.index}].name" value="%{name}"/></td> + <td><s:checkbox name="storkconfig.attributes[%{#stat.index}].mandatory" value="%{mandatory}" /></td> <td><input type="button" value="Delete" onclick='this.parentNode.parentNode.parentNode.removeChild(this.parentNode.parentNode);'/></td></tr> </s:iterator> </table> |