ddd

Results 52 comments of ddd

Sorry I was not clear enough. Yes, it was about click event. Here it is https://codesandbox.io/s/1more-forked-8uqd0?file=/src/index.js Though the span `write(false, showModal)}>` does not have any actual content, but it has...

@Freak613 I have another error `Uncaught TypeError: 'get nextSibling' called on an object that does not implement interface Node.` on this https://codesandbox.io/s/1more-forked-d440c?file=/src/index.js Try to click outside the button. ```javascript const...

Thanks @Freak613, I knew it was wrong so just deleted my comment, but you're so fast :-) I will get back if there is any error.

I am trying the plain values & invalidate but it runs into infinity loop on this scenario. ```javascript const App = component((c) => { let error = undefined; const items...

I want to change the state of some variables when fetching data, for example isLoading (show a spinner), reset the error text... I think I must use a variable called...

Does the `invalidate` update the child component without using `usePropSubscription`? Please help me look at this example. https://codesandbox.io/s/1more-forked-vbc3k?file=/src/index.js

@Freak613 I think the issue is solved now, you can close it. BTW, I have some questions, just let me know if you want to open issue cause it isn't...

Could you help me look at this? The error is `TypeError: props.p is undefined` ```javascript const App = component((c) => { let error = undefined; function Save() { error =...

@Freak613 It seems the value `undefined` of an input does not updated. Here is the example: ```javascript let vatInvoice = {date:'2021-08-03', buyer:'test', amount: 10}; const App = component((c) => {...

@Freak613 I am using ClipboardJS to manage the copy on each rendered item. It runs ok except after the first render when items are not attached to the DOM. Do...