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.
Activity
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #19728 | Thu Nov 19 07:52:08 MST 2009 | patrick.corless | |
Files Changed | ||||
![]() ![]() |
Repository | Revision | Date | User | Message |
ICEsoft Public SVN Repository | #19729 | Thu Nov 19 08:05:33 MST 2009 | patrick.corless | |
Files Changed | ||||
![]() |
Field | Original Value | New Value |
---|---|---|
Salesforce Case | [] | |
Fix Version/s | 4.0 [ 10212 ] | |
Affects Version/s | 4.0 [ 10212 ] |
Status | Open [ 1 ] | Resolved [ 5 ] |
Resolution | Fixed [ 1 ] |
Fix Version/s | 4.0 [ 10222 ] |
Status | Resolved [ 5 ] | Closed [ 6 ] |
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.