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.
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)