Bart wood
Bart wood
I had similar issues but got past them using "lazyConnect" ```` const redis = new Redis({ enableAutoPipelining: true, enableOfflineQueue: false, lazyConnect: true}); await redis.connect(); ```
I've found the same issue. If my server app loses the connection to rabbit I don't get any errors / warnings etc. Messages are lost with no notification at all.
@elwayman02 - this is strange. I just ran a quick test and things appear to be working fine... Here are some snippets from my quick test - have you tried...
I'll leave this issue open. If anyone else has the same issue I'll introduce the change to the Backbone.ModelBinder. Sorry - I just can't replicate the issue.
@kinergy How do you programatically set the value for a select2 control?
@kinergy Yes, that's probably how I would have handled that situation. Otherwise I would put a case statement in for the select2 class in the _setElAttribute() function. But that's a...
Yes, I didn't realize the component was that popular. But is there a better way to check if a component is a select2? something like... ``` if(element.select2){ } ``` I'm...
I've updated the CollectionViewBinder a bit and have added a wiki page on how it works. https://github.com/theironcook/Backbone.ModelBinder/wiki/A-new-Class-to-Bind-Backbone-Collections-to-Views:-Javascript-Weekly-May-18th
I'm finding several uses for the new collection binder. I have many places that show a `` control and when the choices in the backing collection change the select needs...
I've renamed CollectionViewBinder to just CollectionBinder. I've renamed createBoundEls() to just bind()