Ralph

Results 8 comments of 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: `![Image](./c.jpg)`...

Same issue for me. ![image](https://user-images.githubusercontent.com/1655592/206930254-1aa4c252-b4fa-4992-a1f6-4c8e9152ccf0.png)