salix/client/core/src/datePicker/datePicker.html

19 lines
589 B
HTML
Raw Normal View History

2017-07-12 11:32:25 +00:00
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
2017-07-12 12:32:15 +00:00
<input type="text"
class="mdl-textfield__input"
2017-07-12 11:32:25 +00:00
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>
2017-07-12 12:32:15 +00:00
<label class="mdl-textfield__label">{{::$ctrl.label | translate}}</label>
2017-07-12 11:32:25 +00:00
</div>