Is there a way to load a popover when the component loads?
I want to use it as a notification on new features in the app.
1 Answer, 1 is accepted
1
Accepted
Hristian Stefanov
Telerik team
answered on 06 Mar 2025, 09:28 AM
Hi Johan,
Yes, you can show a Popover when the component loads by using the OnAfterRenderAsync lifecycle method in Blazor. This method allows you to execute logic after the component has been rendered, which is a suitable place to show the Popover programmatically.
Here's a basic example of how you can achieve this: