Google-like Filtering in RadWindow

Posted by Community Admin on 05-Aug-2018 01:08

Google-like Filtering in RadWindow

All Replies

Posted by Community Admin on 21-Mar-2011 00:00

I'm trying to do some filter as explained in this demo, http://demos.telerik.com/aspnet-ajax/controls/examples/integration/gridandcombo/defaultcs.aspx

I'm running into a snag where after the first filter occurs the grid freezes up and I cannot rerun another filter. If I remove the ajaxmanager I don't run into this problem, but the radwindow disappears... has anyone else run across this problem?

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="RadGrid1">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl AjaxControlID="RadGrid1">/>
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>
 
<telerik:RadWindow ID="RadWindow1" runat="server" Skin="Telerik"
    Modal="True" VisibleStatusbar="False" VisibleTitlebar="False"
    Height="600px" Width="455px" VisibleOnPageLoad="False">
    <ContentTemplate>  
            <div class="radWindow">                         
                <div class="sfSelectorGridWrapper">
                    <telerik:RadGrid ID="RadGrid1" runat="server" Skin="Sitefinity"
                         AllowFilteringByColumn="True" AutoGenerateColumns="False" GridLines="None" ShowHeader="True">
                         <MasterTableView AllowFilteringByColumn="True"  ClientDataKeyNames="name">
                            <Columns>
                                <telerik:GridBoundColumn DataField="name">
                                </telerik:GridBoundColumn>
                            </Columns>
                         </MasterTableView>
                         <ClientSettings>
                            <Selecting AllowRowSelect="True" />
                         </ClientSettings>
                    </telerik:RadGrid>
                </div>                       
 
            </div>      
    </ContentTemplate>
</telerik:RadWindow>

Posted by Community Admin on 28-Mar-2011 00:00

Hi Kristian,

We have reproduced the described issue locally. Its fix will be included in the upcoming Q1.

Kind regards,
Pepi
the Telerik team

Posted by Community Admin on 28-Mar-2011 00:00

I've managed to work around this by wrapping the radgrid in a radajaxpanel

This thread is closed