Hao Sun
Hao Sun
这样就能避免OnChange被调用两次了吗?从代码里看不出其中的关联性。(抱歉我还没有运行这段代码)
Have you tried this? https://antblazor.com/en-US/components/grid#components-grid-demo-useBreakpoint
Why it doesn't help? I mean, if you are notified when the window size change and you know the new size, then you can decide how to organize your components.
@anddrzejb I don't have any good idea about this. In my view, this issue is mainly caused by the mechanism of blazor server itself.
@anddrzejb How are other component libraries performing? Do they have any solution? I don't have a test environment here.
Well, I'm thinking about if we can skip the rendering of the input component which is active(maybe by making ShouldRender to return false?)(and still render the other parts in the...
@anddrzejb Maybe I am wrong. The reason I mentioned wasm is that in #579 I saw people said something like: > I'm taking a guess, but I think the entire...
@anddrzejb our new pr preview site is really much faster than the current .net 5 blazor wasm site(the size is also bigger 😂). Maybe we don't need to worry about...
@BadarAljahwari @bodzilla try this: ```C# @code{ public class MyChildClass { public string Name { get; set; } } public class WeatherForecast { public int Id { get; set; } public...
> Please debug your code again, whether If the user is null? @ElderJames I guess the user is null for the header cell, where the row data is not provided...