summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/components/dynamic-element/elements-ui/input/ui-element-input.component.html
blob: 814ebfd28bae0a0acb64010442ffdf0433dd6e74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<input
    class="value-input"
    [ngClass]="{'error': control.invalid}"
    type="text"
    [name]="name"
    [(ngModel)]="value"
    (change)="onSave()"
    [attr.maxlength]="validation.propertyValue.max"
    [attr.minlength]="validation.propertyValue.min"
    [pattern]="pattern"
    [formControl]="control"
    tooltip="{{value}}"
    [readonly]="readonly"
    [ngClass]="{'disabled':readonly}"
    />