Is it possible to update a inplace editor. I courrently update a dropdown component using the mounted method and calling out the ref like:
this.$refs.countryDopdown.dataSource = this.countries.
but i'm not able to do this with the implaceeditor component since even though i try something like this:
countryDropDownModel: {
placeholder: 'Find a country',
dataSource: [{}],
fields: { text: 'name', value: 'value' }
},
and then later in my mounted method try to update the dat source like
countryDropDownModel.dataSource =
this.countries
how can i update a dropdown inplace editor dynamically