2018-03-09 13:15:30 +00:00
|
|
|
<div>
|
|
|
|
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
|
|
|
|
<input
|
|
|
|
type="button"
|
|
|
|
class="mdl-textfield__input"
|
|
|
|
ng-click="$ctrl.onMouseDown($event)"
|
|
|
|
ng-keydown="$ctrl.onKeyDown($event)">
|
|
|
|
</input>
|
|
|
|
<div class="icons">
|
|
|
|
<vn-icon
|
2018-03-26 10:24:34 +00:00
|
|
|
ng-show="!$ctrl.disabled"
|
2018-03-09 13:15:30 +00:00
|
|
|
icon="clear"
|
|
|
|
class="clear"
|
|
|
|
ng-click="$ctrl.onClearClick($event)"
|
|
|
|
translate-attr="{title: 'Clear'}">
|
|
|
|
</vn-icon>
|
|
|
|
</div>
|
|
|
|
<label class="mdl-textfield__label" translate>{{::$ctrl.label}}</label>
|
|
|
|
</div>
|
2018-03-17 12:17:48 +00:00
|
|
|
</div>
|
|
|
|
<vn-drop-down
|
|
|
|
vn-id="drop-down"
|
|
|
|
on-select="$ctrl.onDropDownSelect(value)">
|
|
|
|
</vn-drop-down>
|