I've seen scattered throughout the Kendo docs examples of using @<text> for template methods. For example in this SO question it's used both inside a Content call on a TabStrip and in a Template call on a Grid Column.
In VB however, this does not seem to work:
@(Html.Kendo().Grid(Of MyModel) _
.Columns(Sub(config)
config.Template(@<text>
<b>Test rendering inline markup</b>
</text>)
End Sub)
)
In VB however, this does not seem to work:
@(Html.Kendo().Grid(Of MyModel) _
.Columns(Sub(config)
config.Template(@<text>
<b>Test rendering inline markup</b>
</text>)
End Sub)
)