I'm trying to render a grid on demand in a tab using the nw component views. I have tried the following but non work.
@(Html.Kendo().TabStrip().Name("tabstripx").Items(tabstrip =>
{
tabstrip.Add().Text("Tab1").Content(
@<
text
>
@Component.InvokeAsync("SupplierCompliance", new { SupplierId = Model.Id })
</
text
>);
tabstrip.Add().Text("Tab1").Content(@<
text
>
<
vc:supplier-compliance
id
=
"3"
></
vc:supplier-compliance
>
</
text
>);
}))