TRABALHO
<a href="@Url.Action("edit", "markets", new { id = 1 })"
data-rel="dialog" data-transition="pop" data-icon="gear" class="ui-btn-right">Edit</a>
NÃO FUNCIONA - POR QUÊ?
@Html.ActionLink("Edit", "edit", "markets", new { id = 1 }, new {@class="ui-btn-right", data-icon="gear"})
Parece que você não pode passar algo como data-icon = "gear" em htmlAttributes?
Sugestões?
asp.net-mvc
asp.net-mvc-2
actionlink
html.actionlink
Pavel Hlobil
fonte
fonte
Ajax.ActionLink
ajudantesSubstitua o hífen desejado por um sublinhado; ele será automaticamente renderizado como um hífen:
@Html.ActionLink("Edit", "edit", "markets", new { id = 1 }, new {@class="ui-btn-right", data_icon="gear"})
torna-se:
<form action="markets/Edit/1" class="ui-btn-right" data-icon="gear" .../>
fonte
@Html.ActionLink("display name", "action", "Contorller" new { id = 1 },Html Attribute=new {Attribute1="value"})
fonte