I am trying to get the Guid of the selected record on click of a ribbon button in 2013. I am using <crmparameter> in ribbon customization.
</Actions>
<JavaScriptFunctionLibrary="$webresource:new_ShowMessage" FunctionName="showGuid">
<CrmParameter Value= "SelectedControlSelectedItemIds" />
</JavaScriptFunction>
</Actions>
----------
showGuid: funciton(selectedId){
alert(selectedId);
}
Here selectedId returning null ??!! I tried with
Value ="SelectedControlSelectedItemCount" still it's the same issue..
any thoughts on this ???