ceprio

Results 7 comments of ceprio

Here is another way using a reverse proxy implementation in Flask. You can use this solution if you implemented some PyWidget for server side tasks: [https://github.com/ceprio/flask_reverse_proxy_for_flexx](https://github.com/ceprio/flask_reverse_proxy_for_flexx)

Here is an example use case of the concept presented above, it think it uses most of the ideas that where put forward: ``` from flexx import element as e...

Ok, so first think to do in implementing this is to create a container inside the Widget class. I want to keep the Widget class so as above I've copied...

For your first question, I'm mixing Widgets with html components because ideally they should be handled the same way and used interchangeably within init: ``` def init(): tag, text, line,...

Thank you almarklein. Sadly I was not able to call the @event.action function directly (could not figure it out). I rather found another way that seem simpler. I added the...

> If I understand correctly, this new class is needed, because although the JS Widget supports dynamically > changing parents, this does not really work for the PyWidget, right? Yes,...

No hurry on my side, I just though it was worth mentionning. I implemented the correction on a derived class with my additionnal features. Thank you for this usefull API.