I have so many different UserControls and RadControls on my page that it seems to be conflicting with the RadFilter. I am trying to open a RadWindow with the RadFilter in the Content Template. Four problems arise for me when doing this.
1. Clicking the Add Expression button does nothing on first click, a second click does what is expected.
2. Showing an expression based on a DateTime field throws off the style. The textbox width is very small, the images do not show up, and the alternate text shows up.
3. Any skin other than Default does not show correctly.
4. When clicking Apply, I get "Microsoft JScript runtime error: '_events' is null or not an object". When I click Continue in Visual Studio, the filter does get applied.
I think a lot of this could be solved if I were able to put the RadFilter on a seperate page. I understand how the RadFilter interacts with the FilterContainer, in my case a RadGrid but I am hoping that there is a solution as our setup is very complicated.
We use dynamic tab loading using the RadTabStrip control. Each tab contains a UserControl which have a myriad of RadControls including RadSplitter, RadGrid, RadToolbar, RadWindow.
Thanks for any help.
1. Clicking the Add Expression button does nothing on first click, a second click does what is expected.
2. Showing an expression based on a DateTime field throws off the style. The textbox width is very small, the images do not show up, and the alternate text shows up.
3. Any skin other than Default does not show correctly.
4. When clicking Apply, I get "Microsoft JScript runtime error: '_events' is null or not an object". When I click Continue in Visual Studio, the filter does get applied.
I think a lot of this could be solved if I were able to put the RadFilter on a seperate page. I understand how the RadFilter interacts with the FilterContainer, in my case a RadGrid but I am hoping that there is a solution as our setup is very complicated.
We use dynamic tab loading using the RadTabStrip control. Each tab contains a UserControl which have a myriad of RadControls including RadSplitter, RadGrid, RadToolbar, RadWindow.
<telerik:RadAjaxManagerProxy ID="rampDomestic" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="btnApply"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="rgDomestic" LoadingPanelID="ralpDomestic" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="rfAdvanced"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="rfAdvanced" LoadingPanelID="ralpDomestic" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManagerProxy> <telerik:RadAjaxLoadingPanel ID="ralpDomestic" runat="server"></telerik:RadAjaxLoadingPanel> <telerik:RadWindowManager ID="rwmDomestic" runat="server"> <Windows> <telerik:RadWindow ID="rwAdvancedFilter" runat="server" Behaviors="Move, Resize, Close" Title="Advanced Shipment Filter" Modal="true" Width="400" Height="400"> <ContentTemplate> <telerik:RadFilter ID="rfAdvanced" runat="server" FilterContainerID="rgDomestic" ShowApplyButton="false" Style="margin:10px 0 0 10px;"> </telerik:RadFilter> <asp:Button ID="btnApply" runat="server" Text="Apply" OnClientClick="HideAdvancedFilter" /><asp:Button ID="btnCancel" runat="server" Text="Cancel" OnClientClick="HideAdvancedFilter" /> </ContentTemplate> </telerik:RadWindow> </Windows> </telerik:RadWindowManager>Thanks for any help.