Ajax Links are all handled by jQuery now, no more MvcAjax handlers.

This commit is contained in:
Mark McDowall
2012-02-26 00:36:47 -08:00
parent 7a1301610a
commit 4a55d08130
14 changed files with 37 additions and 37 deletions

View File

@@ -3,7 +3,7 @@
@{ ViewBag.Title = "Logs";}
@section ActionMenu{
<ul class="sub-menu">
<li>@Ajax.ActionLink("Clear Logs", "Clear", "Log", new AjaxOptions { OnSuccess = "redrawGrid" })</li>
<li>@Html.ActionLink("Clear Logs", "Clear", "Log", null, new { @class = "ajaxLink", onSuccess = "redrawGrid" })</li>
<li>@Html.ActionLink("File", "File", "Log")</li>
</ul>
}