Completed
Last Updated: 22 Nov 2017 12:03 by Werner
ADMIN
Dilyan Traykov
Created on: 25 May 2016 10:12
Category: GridView
Type: Feature Request
6
GridView: Add ability to include hidden columns in text search
Added the CanUserSearchInHiddenColumns property which indicates whether users can search for content in hidden columns. The property is available with our 2017.3.1127 internal build.
1 comment
Werner
Posted on: 23 Jun 2016 15:58
Change request is caused by your change to Q2 2016 where hidden columns were no longer considered for full text search. I have a custom column with some content and want to provide a search feature, which I had implemented by providing the data to search with hidden columns.

I could imagine 2 solutions for my problem:
* an attribute at column level e.g. 
   <telerik:GridViewDataColumn DataMemberBinding="{Binding FirstName}"            FullTextSearchMode="Never | OnlyIfVisible | Always" />
* a custom callback function for full text search where the application can do any search whatever with the context row object (automatic highlighting naturally NOT supported)