19 lines
524 B
HTML
19 lines
524 B
HTML
|
<div class="mdl-textfield mdl-js-textfield {{$ctrl.className}}">
|
||
|
<input
|
||
|
class="mdl-textfield__input"
|
||
|
type="{{$ctrl.type}}"
|
||
|
name="{{$ctrl.name}}"
|
||
|
ng-model="{{$ctrl.model}}"
|
||
|
vn-validation="{{$ctrl.rule}}"
|
||
|
ng-disabled="{{$ctrl.disable}}"/>
|
||
|
<button
|
||
|
type="button"
|
||
|
class="mdl-chip__action"
|
||
|
tabindex="-1"
|
||
|
translate-attr="{title: 'Clear'}"
|
||
|
style="visibility: hidden">
|
||
|
<i class="material-icons">clear</i>
|
||
|
</button>
|
||
|
<label class="mdl-textfield__label" translate="{{$ctrl.label}}"></label>
|
||
|
</div>
|