My Stuff
Comments
-
However there is a disclaimer to this approach. If the results have two fields of same name such as internalid, only the last field called in the nlobjseachcolumn will be available. at which point using getValue or getText is required to specify. But if each column in your search in unique, this works nicely.
-
I like to do this little trick to convert the results into json objects for (var i=0; i < searchResults.length; i++) { var dataObj = JSON.parse(JSON.stringify(searchResults[i])); // Now you can Access fields as JSON object values // Example: dataObj.internalId.internalid or dataObj.internalid.name }
-
I get that issue to when using Chrome or Safari. The issue does not happen when using FireFox