I have an MVC3 application and I need to add an ajax boot image. I put it in my opinion
@using (Ajax.BeginForm( "LogOn","Account", new AjaxOptions { LoadingElementId = "div_loading" }))
This is my very simple div on the same view:
<div id="div_loading" style="display:none;"> <img src="@Url.Content("~/Content/Images/loading.gif")" alt="" /> </div>
When I click the submit button to send the form back, load.gif never appears. My code is working fine, but the download indicator is not showing. And the image is named correctly and in the right place. Does anyone know why?
Update Apparently, this is somehow connected with Telerik applications. If I create a regular MVC3 application, it works. When I create a Telerik MVC3 application, it does not work. Has anyone else come across this with Telerik?
source share