Reputation: 9900
We need to import to some external system group of contacts that user selected in contacts grid.
For now the only option I see is: get IDs if selected contacts and send it to the to external system using JavaScript.
But is it possible on ribbon button press get list of selected contact on server side? We`d like to process this contacts on server and send them to external system using our C# code (in plugin, most likely)?
Upvotes: 0
Views: 342
Reputation: 17562
Yes, in a slightly longwinded way. You can't call server side code directly from JavaScript. You can however perform an action that will call server side code.
For example:
Upvotes: 2