I have a visualization problem with a simple button, this renders perfectly
@Html.ActionLink("<", "Monthly", "Agenda", null, new Dictionary<string, object> { { "data-role", "button" }, { "data-theme", "c" }, { "data-mini", "true" } })
the action I'm calling though need parameters, therefore I changed it in
@Html.ActionLink("<", "Monthly", "Agenda", new { shift = -1 }, new Dictionary<string, object> { { "data-role", "button" }, { "data-theme", "c" }, { "data-mini", "true" } })
following this answer HTML.ActionLink method
When I change it as above the button does it's jobs but it doesn't render as a jquery mobile button anymore
it goes from this http://i47.tinypic.com/alhs9h.png
to this http://i48.tinypic.com/351ft5z.png
Thank you for helping me out