Hello All,
I have an issue with QSelect component. I am using the component as shown:
<q-select
ref=“storeTASelect”
multiple filled dense options-dense
v-model=“selected”
@input=“hasChanged”
counter
:max-values=“json.multiselect”
:hint=“getHint”
:disable=“checkStatus”
:options=“selectOptions”>
</q-select>
I was able to open the dropdown manually by using refs and calling showPopup() function on QSelect component. “this.$refs.storeTASelect.showPopup();”
It seems a fix was done in release 1.12.9 (fix(QSelect): exit showPopup if it’s not editable #7323). I am no longer able to manually trigger the select dropdown after this fix. Can someone please suggest how to get this dropdown programmatically opened?