17 lines
693 B
HTML
17 lines
693 B
HTML
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
|
|
<input
|
|
class="mdl-textfield__input"
|
|
type="{{$ctrl.type}}"
|
|
name="{{$ctrl.name}}"
|
|
ng-model="$ctrl.value"
|
|
vn-validation="{{$ctrl.rule}}"
|
|
ng-disabled="$ctrl.disabled"
|
|
ng-readonly="$ctrl.readonly"
|
|
/>
|
|
<div class="mdl-chip__action">
|
|
<i class="material-icons pointer" ng-show="$ctrl.hasValue" ng-click="$ctrl.clear()">clear</i>
|
|
<i class="material-icons" ng-if="$ctrl.hasInfo" vn-tooltip="{{$ctrl.info}}" tooltip-position="up">info_outline</i>
|
|
</div>
|
|
<label class="mdl-textfield__label" translate>{{$ctrl.label}}</label>
|
|
</div>
|