Details
-
Type:
New Feature
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 4.0 - Beta
-
Fix Version/s: 4.0 - Beta, 4.0
-
Component/s: Viewer RI
-
Labels:None
-
Environment:any
Description
To help demonstrate the text search API I want to add a new search parameter for cumulative text searches.
Under normal circumstances each time a users starts a new search with the search button the previous search highlighting is cleared. When the "cumulative" search option is selected search highlighting is not cleared.
Under normal circumstances each time a users starts a new search with the search button the previous search highlighting is cleared. When the "cumulative" search option is selected search highlighting is not cleared.
The search API allows for multiple search terms for example:
searchController.clearAllSearchHighlight()
searchController.addSearchTerm(term1,caseSensitive, wholeWord);
searchController.addSearchTerm(term2,caseSensitive, wholeWord);
searchController.addSearchTerm(term3,caseSensitive, wholeWord);
// use the above terms in search, term1 || term2 || term3
// where termX = word && word*
searchController.searchHighlightPage(1);
The above users case is difficult to demonstrate in the RI and is the motive for adding the new check box.