TRABAJOS
<a href="@Url.Action("edit", "markets", new { id = 1 })"
data-rel="dialog" data-transition="pop" data-icon="gear" class="ui-btn-right">Edit</a>
NO FUNCIONA - ¿POR QUÉ?
@Html.ActionLink("Edit", "edit", "markets", new { id = 1 }, new {@class="ui-btn-right", data-icon="gear"})
¿Parece que no puede pasar algo como data-icon = "gear" en htmlAttributes?
Sugerencias
asp.net-mvc
asp.net-mvc-2
actionlink
html.actionlink
Pavel Hlobil
fuente
fuente
Ajax.ActionLink
ayudantesReemplace el guión deseado con un guión bajo; se representará automáticamente como un guión:
@Html.ActionLink("Edit", "edit", "markets", new { id = 1 }, new {@class="ui-btn-right", data_icon="gear"})
se convierte en:
<form action="markets/Edit/1" class="ui-btn-right" data-icon="gear" .../>
fuente
@Html.ActionLink("display name", "action", "Contorller" new { id = 1 },Html Attribute=new {Attribute1="value"})
fuente