Added constraints to the risk and issue logs page

This commit is contained in:
Paul Luchyn 2016-11-24 11:08:44 +02:00
parent a8ee928a9c
commit ca9a470714
2 changed files with 12 additions and 9 deletions

View file

@ -93,7 +93,7 @@
<row>
<label value="${i18n:_('Description')}" />
<textbox id="descriptionNameTextBox" width="636px" rows="4"
value="@{issueLogController.issueLog.description}"/>
value="@{issueLogController.issueLog.description}" maxlength="512"/>
</row>
<row>
<label value="${i18n:_('Categories')}" />
@ -124,7 +124,7 @@
<row>
<label value="${i18n:_('Assigned to')}" />
<textbox id="assignedToTextBox" width="636px"
value="@{issueLogController.issueLog.assignedTo}"/>
value="@{issueLogController.issueLog.assignedTo}" maxlength="50"/>
</row>
<row>
<label value="${i18n:_('Timing')}" />
@ -152,7 +152,8 @@
</row>
<row>
<label value="${i18n:_('Notes')}" />
<textbox value="@{issueLogController.issueLog.notes}" width="636px" rows="8" multiline="true" />
<textbox value="@{issueLogController.issueLog.notes}" width="636px" rows="8" multiline="true"
maxlength="256"/>
</row>
</rows>
</grid>

View file

@ -42,7 +42,8 @@
<row>
<label value="${i18n:_('Status')}" />
<textbox value="@{riskLogController.riskLog.status}" width="636px" rows="1" multiline="false" />
<textbox value="@{riskLogController.riskLog.status}" width="636px" rows="1" multiline="false"
maxlength="25"/>
</row>
<row>
@ -109,12 +110,12 @@
<row>
<label value="${i18n:_('Description')}" />
<textbox id="descriptionNameTextBox" width="636px" rows="3"
value="@{riskLogController.riskLog.description}"/>
value="@{riskLogController.riskLog.description}" maxlength="512"/>
</row>
<row>
<label value="${i18n:_('Counter measures (CM)')}" />
<textbox id="counterMeasuresTextbox" width="636px" rows="3"
value="@{riskLogController.riskLog.counterMeasures}"/>
value="@{riskLogController.riskLog.counterMeasures}" maxlength="50"/>
</row>
<row>
<label value="${i18n:_('Risk Score After CM')}" />
@ -126,7 +127,7 @@
<row>
<label value="${i18n:_('Contingency')}" />
<textbox id="contingencyBox" width="636px" rows="3"
value="@{riskLogController.riskLog.contingency}"/>
value="@{riskLogController.riskLog.contingency}" maxlength="50"/>
</row>
<row>
<label value="${i18n:_('Prevention')}" />
@ -147,14 +148,15 @@
<label value="${i18n:_('Responsible')}" />
<textbox id="responsibleBox" width="315px" rows="1"
value="@{riskLogController.riskLog.responsible}"/>
value="@{riskLogController.riskLog.responsible}" maxlength="25"/>
</row>
</rows>
</grid>
</row>
<row>
<label value="${i18n:_('Notes')}" />
<textbox value="@{riskLogController.riskLog.notes}" width="636px" rows="5" multiline="true" />
<textbox value="@{riskLogController.riskLog.notes}" width="636px" rows="5" multiline="true"
maxlength="256"/>
</row>
</rows>
</grid>