Hi lana,
I tried showing and hiding the loadin panel explicitly by setting the control ID of the textbox as below:
I have a master content page scenario.
The aspx.cs code for setting the AJAX attributes:
protected
void RadTextBoxName_PreRender(object sender, EventArgs args)
{
RadAjaxManager.GetCurrent(Page).ClientEvents.OnRequestStart = "RequestStart";
RadAjaxManager.GetCurrent(Page).ClientEvents.OnResponseEnd = "ResponseEnd";
}
However, loading image just shows on the first key stroke or if i give a pause before typing another character. This was the case as earlier. If I type in continous characters like type in a name without giving a pause the loading panle disappears as soon as I type in the second character and the subsequent characters and does not show again and the data is loaded after some time.
Unfortunately, I am not sure how to create a runnable demo for this because the response time has to be big enough for this to happen.
Please suggest.