2
属性、これは完全にasp.net MVC Html.ActionLink無視しjqueryのは、私は簡単なボタンと可視化の問題を抱えている
@Html.ActionLink("<", "Monthly", "Agenda", null, new Dictionary<string, object> { { "data-role", "button" }, { "data-theme", "c" }, { "data-mini", "true" } })
私はので、私は
でそれを変更し、必要パラメータかかわら呼んでいるアクションをレンダリング私はそれはもうjqueryの携帯のボタンとして、それが仕事だがレンダリングされませんんボタンの上にあるとして、それを変更するには、この答え HTML.ActionLink method次
@Html.ActionLink("<", "Monthly", "Agenda", new { shift = -1 }, new Dictionary<string, object> { { "data-role", "button" }, { "data-theme", "c" }, { "data-mini", "true" } })
それは
このhttp://i48.tinypic.com/351ft5z.pngにこのhttp://i47.tinypic.com/alhs9h.png
から行くあなたがRouteValueDictionary
(ない匿名オブジェクトとしてRouteValuesを渡す必要があり、正しいHtml.ActionLink
過負荷をヒットする
ありがとう@pjumble、魅力のように働いた – gigasean
+1のdata_ポインター。 Intellisenseでかなり動揺していた – Tommy