aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/modals/comment-modal/comment-modal.component.html
blob: 127531bfabfed02b33f6491aef1a65f6aa0754d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<form>
    <div>
        <div class="comment-modal-text" [innerHTML]="message"></div>
        <sdc-textarea #comment1
                      [(value)]="comment.text"
                      placeHolder="{{'CONFIRMATION_MODAL_PLACEHOLDER' | translate }}"
                      [required]="true"
                      name="comment1"
                      testId="checkindialog"
                      [maxLength]="256">
        </sdc-textarea>
        <sdc-validation [validateElement]="comment1" (validityChanged)="onValidityChange($event)">
            <sdc-required-validator message="{{ 'VALIDATION_ERROR_REQUIRED' | translate:{'field': 'Comment' } }}"></sdc-required-validator>
            <sdc-regex-validator message="{{ 'VALIDATION_ERROR_SPECIAL_CHARS_NOT_ALLOWED' | translate}}"
                                 [pattern]="commentValidationPattern"></sdc-regex-validator>
        </sdc-validation>
    </div>
</form>