New issue 60 by shimulsays: Fulent Html
http://code.google.com/p/nhaml/issues/detail?id=60
What will be the equivalent nhaml code for the following web form code:
<% Html.jQuery().Accordion().Name("navigation")
.Items(parent =>
{
parent.Add()
.Text("Accordion")
.Content(() =>
{%>
<ul>
<li>
<%=
Html.ActionLink("Basic example", "Basic", "Accordion")%></li>
</ul>
<%}
);
}
)
.Render(); %>
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
- Html.jQuery().Accordion().Name("navigation").Items() (parent) =>
- parent.Add().Text("Accordion").Content() () =>
%ul
%li= Html.ActionLink("Basic example", "Basic", "Accordion").Render()