Jason Sobell
Jason Sobell
Yeah, this isn't going to be a very practical option. Why not add: ``` context.GlobalContext.JsonSerializersRegistry.AddJsonSerializer((obj) => mySerializer(obj)) ``` Then the user can programmatically decide if they are able to serialize...
I think in most cases there will be a relatively stable set of types people will convert between, such as arrays, Lists, and Dictionaries. I think it would make more...
I think we need a way of allowing users to extending the marshalling. I just noticed at GUIDs are not marshalled, so even though most people want them as strings,...
jason@localhost ??
Nice simple fix @exelaguilar, thanks. It looks like Master branch version has completely rewritten this module.
One last item, why do we have an `external` attribute? It's a pain, as it's easy to forget, and can't we simply look at the link to see if it...
OK, so after being stuck for a day and poring through the documentation trying to navigate between two sub-components in code, it appears I have to use `await this.router.load("../1", {...
OK, I tried with `how do I jump to another page in my nested router` and it did indeed give me sample code. You have to be careful in assuming...
Should we have a way of specifying a default for `:id` in the example above? For example, I have a wizard for three pages: /app/wizard/1 /app/wizard/2 /app/wizard/3 If the user...
OK, I'm not an SB person, but here it is in a broken state: https://stackblitz.com/edit/au2-router-child-under-parameterized-route-82yxqgaf?file=src%2FA.ts I suspect the use of the constraints in the path might avoid the issue, although...