PRACUJE
<a href="@Url.Action("edit", "markets", new { id = 1 })"
data-rel="dialog" data-transition="pop" data-icon="gear" class="ui-btn-right">Edit</a>
NIE DZIAŁA - DLACZEGO?
@Html.ActionLink("Edit", "edit", "markets", new { id = 1 }, new {@class="ui-btn-right", data-icon="gear"})
Wygląda na to, że nie możesz przekazać czegoś takiego jak data-icon = "gear" do htmlAttributes?
Propozycje?
asp.net-mvc
asp.net-mvc-2
actionlink
html.actionlink
Pavel Hlobil
źródło
źródło
Ajax.ActionLink
pomocnikamiZastąp żądany łącznik podkreśleniem; zostanie automatycznie wyświetlony jako łącznik:
@Html.ActionLink("Edit", "edit", "markets", new { id = 1 }, new {@class="ui-btn-right", data_icon="gear"})
staje się:
<form action="markets/Edit/1" class="ui-btn-right" data-icon="gear" .../>
źródło
@Html.ActionLink("display name", "action", "Contorller" new { id = 1 },Html Attribute=new {Attribute1="value"})
źródło