Skip to content

Commit dcbbddf

Browse files
Update general-issues.md (#162)
1 parent 14fde62 commit dcbbddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

troubleshooting/general-issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ There are also certain measures a web app should take to improve its performance
119119

120120
* Loading content on demand (such as a cell value) should be done through a nested component and its `OnParemetersSetAsync` method. A similar example is available in the [load tooltip content on demand](https://github.com/telerik/blazor-ui/tree/master/tooltip/in-grid) and [load hierarchy data on demand](https://github.com/telerik/blazor-ui/tree/master/grid/load-on-demand-hierarchy) sample projects. You should not use an async method in a component's `Template` (or any `RenderFragment`) directly, because their execution is awaited by the framework before the fragment can render at all (`Templates` and `RenderFragment` instances are basically synchronous).
121121

122-
122+
* If you need to generate documents or prepare some data, try to offload this task to the server. You can create an HTTP request and gather the processed information. With this approach, you will gain from the better server-side performance and won't download all the data on the client-side.
123123

124124

125125
## See Also

0 commit comments

Comments
 (0)