Looking for a solution to improve performance on a page with a Kendo grid that contains a high number of rows. Each row has complex logic for showing/hiding elements based on column values, which is causing performance issues when dealing with 100 or more rows. Additionally, there are edit popups on the page to change certain data that is not directly related to the grid content. This is causing further slowdowns - slow popup opening and sluggish keyboard input when editing names. One potential workaround could involve delaying the rendering and loading of the grid until triggered by a specific command (e.g. starting a function to load grid data). By implementing this approach, the grid would only be processed when necessary, improving overall performance. Any suggestions on how to achieve this?