Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
I have created a table using the sfgrid control. One of the columns that appears is conditional based on what policy the user belongs to. This Column is rendered at the end when wrapping in an authorize view tag. Unsure if this is a bug or I am missing something.
@{ var team = (context as SupportTeamListViewModel); @if (team.Active) { Active} else {InActive} }@{ var team = (context as SupportTeamListViewModel); View Details }
@{ var team = (context as SupportTeamListViewModel); @if (team.Active) { Active} else {InActive} }@{ var team = (context as SupportTeamListViewModel); View Details }