Info
Version: | 0.9.6 |
Author(s): | Debajyoti Mahanta |
Last Update: | Thursday, July 17, 2014 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/debajyotimahanta/LyncPressence |
NuGet Url: | https://www.nuget.org/packages/LyncPresencePlugin |
Install
Install-Package LyncPresencePlugin
dotnet add package LyncPresencePlugin
paket add LyncPresencePlugin
LyncPresencePlugin Download (Unzip the "nupkg" after downloading)
Dependencies
- jQuery(1.9.1)
Tags
It works on IE, Chrome and Firefox. In order for this plugin to work.
To install this plugin you can use bower or via nuget
You must have Lync client installed.
Needs jquery
You will need to include the main.css and images library in the styles folder.
Overview
The way it works is you need to declare your class in the following name where presence needs to show in the following manner
<div class="author" data-user-id="[email protected]">John Doe</div>
It loops through all items which has class author
It uses data-user-id attribute value to construct the presence. So this id must be SPID At end of the page you will see that i am initializing the object and calling InsertLyncs method which does the above two steps for you
var x= new Lync();
x.InsertLyncs();
In order to see a sample setup, please refer to index.html file.