Created
February 23, 2017 08:46
-
-
Save sankaran1984/d06d0fc79b11f12bd4e2b61896c33055 to your computer and use it in GitHub Desktop.
Visualforce - Beyond Basics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class testclass1_23022017 { | |
/* VF Bindings */ | |
Public String searchStr{get;set;} | |
Public Map<String, List<Map<String, String>>> results {get;set;} | |
/* Action Function */ | |
public void startSearch() { | |
List<List<sObject>> lsResults = [ | |
FIND | |
:searchStr | |
IN | |
ALL FIELDS | |
RETURNING | |
Account(Name, Type), | |
Opportunity(Name, StageName), | |
Product2(Name, ProductCode) | |
]; | |
Map<String, List<String>> objNamesAndFields = new Map<String, List<String>>{ | |
'Account' => new List<String>{ 'Name', 'Type'}, | |
'Opportunity' => new List<String>{ 'Name', 'StageName'}, | |
'Product2' => new List<String>{ 'Name', 'ProductCode'}}; | |
results = new Map<String, List<Map<String, String>>>(); | |
Integer count = 0; | |
for (String objName : objNamesAndFields.keySet()) { | |
results.put(objName, new List<Map<String, String>>()); | |
for (Integer idx = 0; idx < lsResults[count].size(); idx++) { | |
Map<String, String> recMap = new Map<String, String>(); | |
for (String field : objNamesAndFields.get(objName)) { | |
recMap.put(field, (String) lsResults[count][idx].get(field)); | |
} | |
results.get(objName).add(recMap); | |
} | |
count++; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment