This is probably really simple, but for some reason the grid is not pulling back any data when the filter is run. i have 2 grids on the page and you click grid1 it runs the datasource for grid2. this is all done with a postback in grid2. the new data is there and i want to filter it by say a "first name". so i click in the filter and type "Jim" - the grid is blank - no message nothing. but...
...i click on the grid1 row that was selected and it does a postback and shows the filtered data using "Jim". why is it not filtering out when i am done entering the filter as the GridBoundColumn is coded. I have to select the Grid1 for the data to refresh the Grid2 data with the filter working.
Grid2 below:
There has to be something simple here that needs to make it postback and grab the data with the filter in place instead of clicking on the Grid1 to make it NeedDataSource
Thoughts, ideas, answers?
Thanks!
<telerik:GridBoundColumn DataField="FirstName" DataType="System.String" HeaderText="Name" UniqueName="FirstName" Reorderable="true" AutoPostBackOnFilter="false" CurrentFilterFunction="Contains" FilterDelay="1000" ShowFilterIcon="false"><ItemStyle Width="100px" /></telerik:GridBoundColumn>...i click on the grid1 row that was selected and it does a postback and shows the filtered data using "Jim". why is it not filtering out when i am done entering the filter as the GridBoundColumn is coded. I have to select the Grid1 for the data to refresh the Grid2 data with the filter working.
Grid2 below:
<telerik:RadGrid runat="server" ID="RadGridMembers" Height="825px" Width="600px" AutoGenerateColumns="false" AllowMultiRowSelection="false" AllowFilteringByColumn="true"><GroupingSettings CaseSensitive="false" ></GroupingSettings><MasterTableView DataKeyNames="MemberId, FirstName" ClientDataKeyNames="MemberId">There has to be something simple here that needs to make it postback and grab the data with the filter in place instead of clicking on the Grid1 to make it NeedDataSource
Thoughts, ideas, answers?
Thanks!