Icaro Scherma
Icaro Scherma
I'm testing more options / stuff required in some SOAP integration processes and then I should create a PR with this add-ons =)
I'm trying to use the `select` and `command`, but seems that the `click` event from the `rowSelect` is propagating even inside another event, because I tried to use `e.preventDefault()` and...
Yes, you're right. PR #24 done.
Hey @Ricqrdo this happens because once you have a state change in your current component, React redraws your current component. In your example, `App.js` it's your component itself. So as...
@Ronny25 can you post the block of code like @AlexBasile123 did? It seems that he had a different issue all along and your issue seems to be related to react...
I see what you're saying. The `snapshot.displayValue` it's changed before the actual State is changed. To prevent this you can either: - Monkeypatch; - Write Effects; - use a `setValue`...
Do you still use `required` instead of your custom validations while using React? I would recommend you to stir away from this and use something like: ```JSX const [title, setTitle]...
I don't know how `ccxt.exchanges` looks like but it seems that you're trying to achieve an ajax query without using ajax. :P `getOptions` it's for assynchronously get options, in other...
I tried to find examples regarding [Scheduling](https://sabre.io/dav/scheduling/) but I couldn't so far. I got CalDAV working on my localhost environment (php8 + apache 2.4, dockerized), added to Mac OS Calendar....
After adding `.parentNode` after `ref.current?` it doesn't seem to change the ability to drag-n-drop based in the parentNode (same as the previous box).