pySilver

Results 93 comments of pySilver

Facing the same issue here. However I cannot use `this.clearOptions()` since I'm using `virtual scroll plugin` so I'd like user to have previosly loaded values.

@x4m dumb question, but am I expected to create database for console on my own and odyssey will install required tables on its own?

The whole problem is that dynamically included files are referenced as `/static/path-to/file.woff2` which assumes that page is opened on the same port. I recall this was fixed by using proxy...

Turns out it is trivial to solve. Simply set `server.origin` in your vite.config.js ``` server: { origin: 'http://localhost:5173', }, ```

Just a side note. I'm working with Django & Stimulus (well it's not binded in any way) and I'm so so so so happy with it. HTML-over-the-wire it is so...

@estebistec yeah well thats not clear from my example. here is a serializer: ``` python class MySerializer(Serializer): authors = ListOrItemField( PrimaryKeyRelatedField( queryset=Authors.objects.all(), error_messages={ 'does_not_exist': _(u"Invalid Account: %s") }, ), write_only=True,...

Hm, that worked for me just fine. So passing empty list as value to a ListOrItemField did not result in `required` error. However passing an empty string would result in...

@estebistec nop, our app is too big to make an easy upgrade to 3.0 :/

@dsmorse actually is there a method to repaint layout? I think that breakpoints should be the correct answear for resposivity support. Take a look at http://kenwheeler.github.io/slick/ and how they handle...