Graker
Graker
At the moment I solved it by setting `this.$el.style.width` to the maximum allowed value when user tries to go over borders. Though it seems like a hack and I really...
Hello! Thank you for the reply! Reverting width on `resizestop` and `dragstop` events is what I did and it eventually resulted in the small issue I described in my second...
Hi guys! > How can we get attribute onSelect function? Have you figured this out? I have similar problem. Having multiple autocomplete fields on page, I need to figure out...
Just in case someone would wonder, for now I did it with jquery: ```javascript $('input.autocomplete-input:focus').prop('id').replace('autocomplete-', ''); ``` This code would return index (like 0..N) for the element which just triggered...