2017-09-12 13:02:14 +00:00
|
|
|
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
|
2017-09-12 10:45:29 +00:00
|
|
|
<input
|
|
|
|
class="mdl-textfield__input"
|
|
|
|
type="{{$ctrl.type}}"
|
|
|
|
name="{{$ctrl.name}}"
|
|
|
|
ng-model="$ctrl.value"
|
2017-09-12 13:02:14 +00:00
|
|
|
vn-validation="{{$ctrl.rule}}"
|
2017-09-13 07:45:42 +00:00
|
|
|
ng-disabled="$ctrl.disabled"
|
2017-09-12 10:45:29 +00:00
|
|
|
/>
|
2017-09-13 07:45:42 +00:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="mdl-chip__action"
|
|
|
|
tabindex="-1"
|
|
|
|
translate-attr="{title: 'Clear'}"
|
|
|
|
ng-show="$ctrl.showActions"
|
|
|
|
>
|
|
|
|
<i class="material-icons" ng-click="$ctrl.clear()">clear</i>
|
|
|
|
</button>
|
|
|
|
<label class="mdl-textfield__label" translate>{{$ctrl.label}}</label>
|
2017-09-12 09:44:56 +00:00
|
|
|
</div>
|