Hans Raaf

Results 419 comments of Hans Raaf

* Using `ctx.Update()` is "signaling" that there is an update check needed. If you want to make this a "real" signal, just create one on the component and send that...

I guess you mean it limits your development using Go-App? Could you give an example what is problematic for you to get right? Are you trying to combine "normal" JavaScript...

What is 'go-app nowasm mode'? Do you mean using the Go-App declarative HTML generation? Isn't this a totally bloated way to create a standard HTML web server?

I made a test and it works as expected. Did you check that the file was loaded (the PWA is updated) and you use the right syntax? Double check from...

Yes, I had problems like that with Safari too. It is the browser with the most bugs we encountered (esp. with CSS & style usage). The CSS caching is one...

How is that related to Go-App?

Lol, I was not noticing that that is from the documentation. A CSS quirk I guess.

Hi, cool that you try go-app :) The problem with your code is that you missed that `app.Route()` gets an example of the components type and not an initialized component....

`Render()` is called before `OnMount()` because the "mounting" creates the node so if you need to initialize a structure you should use `OnInit()` or make `Render()` work with the non...

You place one component into another one. The only limitation with that is, that each component must have a root component. So if you had one that are table rows,...