Reputation: 5935
I'm building few webparts for Sharepoint and I need to show presence of users (from Lync/OCS). When I use :
<img border=\"0\" height=\"12\" width=\"12\" src=\"/_layouts/images/blank.gif\" onload=\"IMNRC('" + user.Email + "')\" id=\"IMID_" + Guid.NewGuid() + "\" ShowOfflinePawn=1> " + user.Name + "</span>
It works fine and I get nice presence control with many features (name, email, I can call this person or send any message etc...) :
The problem is that it works only in IE, is there any way I can have the same features in other browsers ?
Upvotes: 2
Views: 3497
Reputation: 15
Check this out : http://customsp.blogspot.com/2014/07/sharepoint-2013-lync-presence-using.html
Using this jquery plugin you can get contact card.
Upvotes: 1
Reputation: 14340
What are are using uses ActiveX, and will only work for IE.
You can use the HTML Presence Controls for Microsoft Lync Server 2010 if you want to support multiple browsers.
Upvotes: 1