wotamann / vuetify-form-base

Schema-based Form Generator - Vue.js 2.0 Component based on Vuetify 2.0
https://wotamann.github.io/vuetify
231 stars 63 forks source link

Combo box / selects don't open when you click the arrow in the field #68

Closed DevBrent closed 3 years ago

DevBrent commented 3 years ago

It seems like VFormBase is emitting an update which might be messing up the combo boxes when you click the icon within the combo box dropdowns.

Has anyone else run into this?

Edit: You can reproduce on https://wotamann.github.io/

RyanCwynar commented 3 years ago

I created a PR to address this https://github.com/wotamann/vuetify-form-base/pull/69

wotamann commented 3 years ago

Thanks for the feedback and your working PR. But I would prefer the following solution as I think it would be more flexible for the future. Based on your proposal i will integrate this in next version

Remove

// HTML
@click:append="onEvent($event, obj, append)"

and replace

// HTML 
@[suspendClickAppend(obj)]="onEvent($event, obj, append)"

//methods
suspendClickAppend(obj){
      // select|combobox|autocomplete -> suspend 'click:append' for working down arrow
      return /(select|combobox|autocomplete)/.test(obj.schema.type) ? '' : 'click:append'
},  
wotamann commented 3 years ago

69 fixed

RyanCwynar commented 3 years ago

Ah, I see what you did there. That's cool. Gets a little more meta with it.