最初のテキストボックスが読み取り専用である 2 つのテキストボックスがあります。アイテムのリストを選択するために使用されます。最初の入力ボックスでアイテムが選択されたら、2 番目の入力ボックスにフォーカスする必要があります。
指令:
.directive('focus', function($timeout) {
return {
link: function(scope, element, attrs) {
$timeout(function() {
element[0].focus();
}, 150);
}
};
});
HTML:
<label class="item item-input InputFormFull">
<span class="input-label"> {{'loadproducttype_message' | translate}} *</span>
<input stopccp focus-me style="margin-left: 5px;" ng-model="vm.product.type"
placeholder="{{'eloadproducttype_message' | translate}}"
type="text" ng-readonly="true" ng-click="vm.selectProduct()" />
<i class="ion-chevron-down"></i>
</label>
<ion-scroll direction="x" class="item wide-item" ng-if="vm.showProductList === 'true'">
<span ng-repeat="v in vm.items" class="scroll_x" ng-click="vm.setProducts(v)">
{{ v.display.name }}
</span>
<span ng-if="vm.items.length === 0" class="scroll_x">
{{"addproduct_message" | translate}}
</span>
</ion-scroll>
<label class="item item-input InputFormFull"
ng-if="vm.product.selectedtype === 'piece'" focus>
<span class="input-label"> {{'piece_message' | translate}} *</span>
<input stopccp decimalpoint style="margin-left: 5px;"
ng-model="vm.product.count" maxlength="8"
onkeydown="if(this.value.length === 8) this.value = this.value.slice(0, -1);"
placeholder="0" type="number" ng-change="vm.onTotalCost()"
oninput="this.value = this.value.replace(/[^0-9]/g, '');
this.value = this.value.replace(/(\..*)\./g, 0);"
ng-click= "vm.hideScrollContent()"
/>
</label>
コントローラーで条件を指定する代わりに、ディレクティブ自体で実行したいと思います。ディレクティブで実行できるかどうかを知りたいです。