How do I get RadFilter to work with RadTreeList and an OpenAccess DataSource?
...this seems to do nothing
...this seems to do nothing
<telerik:RadFilter runat="server" FilterContainerID="locationTreeList" ID="ctl00" CssClass="RadFilter RadFilter_Default " Skin="Transparent"> <FieldEditors> <telerik:RadFilterTextFieldEditor TextBoxWidth="120" FieldName="LocationName" /> </FieldEditors></telerik:RadFilter><telerik:RadTreeList ID="locationTreeList" runat="server" AllowPaging="false" AutoGenerateColumns="false" DataSourceID="locationDS" AllowSorting="True" DataKeyNames="LocationID" ParentDataKeyNames="ParentID"> <Columns> <telerik:TreeListBoundColumn DataField="LocationID" HeaderText="Location ID" /> <telerik:TreeListBoundColumn DataField="LocationName" HeaderText="Name" /> <telerik:TreeListBoundColumn DataField="ShortCode" HeaderText="Short Code" /> <telerik:TreeListCheckBoxColumn DataField="IsTest" HeaderText="Test Location" /> <telerik:TreeListBoundColumn DataField="AddressID" HeaderText="Address ID" /> </Columns></telerik:RadTreeList><telerik:OpenAccessDataSource ID="locationDS" runat="server" EnableDelete="False" ObjectContextProvider="AuthDB.Model.Context, AuthDB" OrderBy="LocationName, ParentLocation.LocationName" TypeName="AuthDB.Model.CommonLocation" />