Deekshith Raj Basa
Deekshith Raj Basa
@davidanaya hey thanks for making this spinner but I was expecting it to be like when user clicks on a button it should start spinning and stop after 5-9 seconds.
Hello, @travist. I saw that the current version of Formio has modifications to the choice js within it; how do I make this work with Angular shadow DOM? I'm stuck...
@jamincollins try using npm `npm i` `npm run dev`
Please add API key to get started, go to setting (http://localhost:3000/settings) and add your API key.
@huangjingcai 
> I faced the same issue with FormIO (using single-select and multiple-select). In particular, each element doesn't activate by clicking using shadow-root. I fixed it with a workaround using JavaScript:...
> @mariolinguito thank you, do you also face the same issue as I? What if user open's up a dropdown panel and clicks anywhere on the app and user expects...
> > > > > > > > > @mariolinguito thank you, do you also face the same issue as I? What if user open's up a dropdown panel and...
> > > > > > > > > > > > > > > > > @mariolinguito thank you, do you also face the same issue as I? What...
Sure @mariolinguito, adding these two lines of code `dropdown_input` will solve all the issues. ``` choice.onclick = function(event) { event.stopPropagation(); const dropdown = this.querySelector('.choices__list.choices__list--dropdown'); // get the input that is...