21 lines
605 B
HTML
21 lines
605 B
HTML
|
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
|
||
|
<input
|
||
|
class="mdl-textfield__input"
|
||
|
type="text"
|
||
|
name="{{::$ctrl.name}}"
|
||
|
ng-model="$ctrl.modelView"
|
||
|
ng-disabled="{{!$ctrl.enabled}}"
|
||
|
rule="{{::$ctrl.rule}}"/>
|
||
|
|
||
|
<button
|
||
|
type="button"
|
||
|
class="mdl-chip__action ng-hide"
|
||
|
tabindex="-1"
|
||
|
translate-attr="{title: 'Clear'}"
|
||
|
ng-show="$ctrl.modelView"
|
||
|
ng-click="$ctrl.onClear()"
|
||
|
>
|
||
|
<i class="material-icons">clear</i>
|
||
|
</button>
|
||
|
<label class="mdl-textfield__label" translate>{{::$ctrl.label}}</label>
|
||
|
</div>
|