
Hi,
I am calling a radconfirm from a web page. After the user clicks on "OK or "Cancel" the radconfirm closes, the callback function gets invoked, but the focus is not returned to the control that had it before opening the radconfirm window.
I could set it by calling .focus() but I have more than 25 textboxes and I do not want to keep track of the control with the current focus. Using the standard browser confirmation windows keeps the focus were it was before opened.
Is there any possible solution for this? It forces the user to grab the mouse and click back on the page.
Thanks.

| <telerik:radcalendar id="radCalSearch" runat="server" | |
| enablemultiselect="false" | |
| showrowheaders="true" | |
| UseColumnHeadersAsSelectors="true" | |
| UseRowHeadersAsSelectors="true" | |
| enablenavigationanimation="false" | |
| fastnavigationnextimage="~/images/btn_RadCal_FN.jpg" | |
| fastnavigationprevimage="~/images/btn_RadCal_FP.jpg" | |
| navigationnextimage="~/images/btn_RadCal_N.jpg" | |
| navigationprevimage="~/images/btn_RadCal_P.jpg" | |
| daynameformat="FirstTwoLetters" | |
| onselectionchanged="radCalSearch_SelectionChanged" AutoPostBack="true"> | |
| <SpecialDays> | |
| <telerik:RadCalendarDay Date="" Repeatable="Today"> | |
| <ItemStyle CssClass="radCalToday_Default" /> | |
| </telerik:RadCalendarDay> | |
| </SpecialDays> | |
| </telerik:radcalendar> |
| Protected Sub radCalSearch_SelectionChanged(ByVal sender As Object, ByVal e As Telerik.Web.UI.Calendar.SelectedDatesEventArgs) Handles radCalSearch.SelectionChanged | |
| Try | |
| SetSession(True, False) | |
| If intSearchTabID <> -1 Then | |
| Response.Redirect(NavigateURL(intSearchTabID, False)) | |
| End If | |
| Catch exc As Exception 'Module failed to load | |
| ProcessModuleLoadException(Me, exc) | |
| End Try | |
| End Sub |
There is a problem when I use the custom filter, along with the default Telerik filters. When we try to filter on any Integer or decimal field, there is an internal JS error in the telerik grid. If we remove the custom filters then the filters work fine as it is.
Any idea on this issues?
