As you can see from title, I tried to change the placeholder text which says "No results match" and which is grey-out(disabled) from a selected tag.
I tried with "placeholder" but it doesn't work.
<div>
<select chosen disable-search="true" id="newpaymentMethod"
placeholder="Placeholder text"
class="easytrade-input full-width" name="newpaymentMethod"
ng-model="vm.newRecord.paymentMethod"
ng-options="paymentMethod.type as paymentMethod.description
for paymentMethod in vm.paymentMethodOptions"
required>
</select>
</div>
Then I tried with "no_results_text", still doesn't work
<div>
<select chosen disable-search="true" id="newpaymentMethod"
no_results_text="Placeholder test"
class="easytrade-input full-width" name="newpaymentMethod"
ng-model="vm.newRecord.paymentMethod"
ng-options="paymentMethod.type as paymentMethod.description
for paymentMethod in vm.paymentMethodOptions"
required>
</select>
</div>
Any idea about it ? Thanks