This question is locked. New answers and comments are not allowed.
Hello,
i got a error inside the vs2010 error list.
"Cannot convert lambda expression to type 'string' because it is not a delegate type"
If i use Code Nuggets inside the Content function ( like the ActionLink in the sample ) this error is raised.
Regards,
Timo
i got a error inside the vs2010 error list.
"Cannot convert lambda expression to type 'string' because it is not a delegate type"
If i use Code Nuggets inside the Content function ( like the ActionLink in the sample ) this error is raised.
<% Html.Telerik().TabStrip()
.Name( "ProfileTab" )
.Items( tabstrip =>
{
tabstrip.Add()
.Text( "Verträge" )
.ImageUrl( "~/Content/Images/Controls/contract16.png" )
.Content( () =>
{%>
<
fieldset
>
<
legend
>allgemeine Verträge</
legend
>
<
ol
>
<
li
>
<%= Html.ActionLink( "...", "...", new { id = Model.Id } ) %>
</
li
>
</
ol
>
</
fieldset
>
<%} );
} )
.SelectedIndex( 0 )
.Render();
%>
Regards,
Timo