I'm creating a custom ribbon button in CRM 2011 that creates a trigger entity activating a plugin. I'm trying to transfer data into the plugin by creating fields inside the trigger entity. One of the fields I'm trying to fill is the Logical Name of the selected entity (I'm trying to make this work universally which is why I'm not directly specifying a single entity). If two different entities on the homegrid are selected (and they're the same entity type) how can I access their logical name using jscript?
I've tried using the crmparameter SelectedControlSelectedItemReferences
and then calling references[0].LogicalName
but this returns "undefined".