Hi All,
I have found one very strange bug in the telerik grid filter functionality.
I have used basic filter functionality like below :
http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/filtering/defaultcs.aspx
Its working fine if i used Rad Ajax Loading Panel like below :
But if I provide Skin for the Rad Ajax Loading Panel then first time focus lost from filter textbox and after that it did not work properly. Textbox focus not lost from filter textbox and i can not even add new characters or delete characters I need to once again set focus explicitly on the filter textbox to do any changes.
Below find code that cause above issue :
I have found one very strange bug in the telerik grid filter functionality.
I have used basic filter functionality like below :
http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/filtering/defaultcs.aspx
Its working fine if i used Rad Ajax Loading Panel like below :
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server"> </telerik:RadAjaxLoadingPanel> <telerik:RadAjaxManager ID="rad1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="rgTest"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="rgTest" LoadingPanelID="RadAjaxLoadingPanel1" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager>But if I provide Skin for the Rad Ajax Loading Panel then first time focus lost from filter textbox and after that it did not work properly. Textbox focus not lost from filter textbox and i can not even add new characters or delete characters I need to once again set focus explicitly on the filter textbox to do any changes.
Below find code that cause above issue :
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Default"> </telerik:RadAjaxLoadingPanel> <telerik:RadAjaxManager ID="rad1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="rgTest"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="rgTest" LoadingPanelID="RadAjaxLoadingPanel1" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager>