Ralph
Ralph
@developit That sounds similar to what's happening here. Here's the flow I'm noticing thus far. 1. `show` method is invoked - [set `active` state to true](https://github.com/react-toolbox/react-toolbox/blob/dev/components/menu/Menu.js#L192) 2. `componentWillUpdate` method is...
I'm curious if removing the `componentWillUpdate` and `componentDidUpdate` code and handling that stuff in the `setState` callbacks might fix the issue. e.g. ``` show() { const { width, height }...
@marvinhagemeister it's been a while since I've tried to work with this but it doesn't look like it's work. `package.json` dependencies ``` "dependencies": { "preact": "10.0.0-alpha.4", "preact-compat": "^3.18.4", "react-toolbox": "^2.0.0-beta.13"...
This might not be the most performant use of sqlalchemy depending on your situation but I use [Mapping Class Inheritance](http://docs.sqlalchemy.org/en/latest/orm/inheritance.html#basic-control-of-which-tables-are-queried). That can be really nice because the join relationship is...
Have some more playing around it looks you can achieve the alternative approach I described about by the DOMAIN definition as follows: ``` DOMAIN['people']['datasource']['projection'].update({ 'status': 1, 'filter_type': 1, }) ```...
Really would like this feature. Just as an implementation idea, potentially the images could be converted to base64 and then embedded in the doc. Not really sure about the PDF...
@thepian I just realized this does work, but I was making a silly error. If you use must use a relative path not an absolute path. These both work: ``...
Same issue for me. 
I'm seeing a similar issue with a custom oauth provider (teachable). I think the issue is related to a DNS issue as noted [here](https://stackoverflow.com/questions/40182121/whats-the-cause-of-the-error-getaddrinfo-eai-again). I'm running on Windows using WSL...
A possible simple solution might be to allow an `onClick` prop on the ``. You would have to Set it on the `Bar` and the `LabelList` but I would take...