Hi,
Yes, it is possible now using JavaScript framework. There is a function:
renderer.drillDown(ID)
Where ID is an ID of employee. If you use user profiles as a data source it is account name.
So, you can get value of parameter and drill down to specific person.
You can find more information about framework in the documentation.
If you want to do it automatically on page load the script will look like below. I use “accountname” as parameter from URL string.
var isFirstLoad = true;
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
renderer.onLoadingFinished(function(){
if(isFirstLoad){
isFirstLoad = false;
var accountName = getParameterByName("accountname");
renderer.drillDown(accountName);
}
});