SUPPORT-8916: commited
This commit is contained in:
parent
685e281b0a
commit
0718495996
1 changed files with 21 additions and 23 deletions
|
|
@ -1,31 +1,29 @@
|
|||
<div [id]="getObjectId()"
|
||||
class="form-group dropdown">
|
||||
class="form-group">
|
||||
<label [ngbTooltip]="tooltip | emptyIfNull"
|
||||
[hidden]="!label" class="control-label">
|
||||
<span>{{label}}<span *ngIf="isRequired()" class="alarm"> *</span></span>
|
||||
</label>
|
||||
<div class="component-float">
|
||||
<div class="dropdown-content" (mouseout)="onDropdownMouseOut()">
|
||||
<input [type]="typeAsString"
|
||||
class="form-control"
|
||||
[name]="name"
|
||||
[masked-input]="mask"
|
||||
[regexMask]="regexMask"
|
||||
[un-mask-value]="unMaskValue"
|
||||
[casing]="casingValue"
|
||||
[placeholder]="placeholder | emptyIfNull"
|
||||
[maxlength]="allowMoreSymbols ? null : maxLength"
|
||||
[maxLengthAllowingMoreSymbols]="allowMoreSymbols ? maxLength : null"
|
||||
[minlength]="minLength"
|
||||
[(ngModel)]="internalValue"
|
||||
#model="ngModel"
|
||||
[disabled]="!isEnabled()"
|
||||
[ngStyle]="style"
|
||||
[required]="isRequired()"
|
||||
[pattern]="pattern"
|
||||
[title]="getValueForTooltip()"
|
||||
(focus)="onFocus()"
|
||||
(blur)="onBlur()">
|
||||
</div>
|
||||
<input [type]="typeAsString"
|
||||
class="form-control"
|
||||
[name]="name"
|
||||
[masked-input]="mask"
|
||||
[regexMask]="regexMask"
|
||||
[un-mask-value]="unMaskValue"
|
||||
[casing]="casingValue"
|
||||
[placeholder]="placeholder | emptyIfNull"
|
||||
[maxlength]="allowMoreSymbols ? null : maxLength"
|
||||
[maxLengthAllowingMoreSymbols]="allowMoreSymbols ? maxLength : null"
|
||||
[minlength]="minLength"
|
||||
[(ngModel)]="internalValue"
|
||||
#model="ngModel"
|
||||
[disabled]="!isEnabled()"
|
||||
[ngStyle]="style"
|
||||
[required]="isRequired()"
|
||||
[pattern]="pattern"
|
||||
[title]="getValueForTooltip()"
|
||||
(focus)="onFocus()"
|
||||
(blur)="onBlur()">
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue