radzenhq / radzen-blazor-studio

Sample applications created with Radzen Blazor Studio
https://www.radzen.com/blazor-studio
18 stars 3 forks source link

Methods design screen can't create navigation #64

Closed koksalbasar closed 2 years ago

koksalbasar commented 2 years ago

1) When the Navigation command is selected from the menu RBS creates the following line UrlHelper.NavigateTo(); UrlHelper is the wrong keyword. Because the Radzen is injecting the NavigationManager as UriHelper.

2) When selecting a page to navigate the page name is added directly to the previous line without quotation marks. Wrong result : UrlHelper.NavigateTo(/pageName); Correct result must be : UriHelper.NavigateTo("/pageName");

akorchev commented 2 years ago

Hi @koksalbasar,

We just released beta.1 which should hopefully solve this issue. Thank you for reporting it!

koksalbasar commented 2 years ago

It works. Thank you