sharepointstack.blogspot.com
SharePointStack: February 2013
http://sharepointstack.blogspot.com/2013_02_01_archive.html
Saturday, February 23, 2013. WebPart Life Cycle in different PostBacks. ConnectionConsumer method is called if web part is connectable. Sets the connection providers interface in the webpart). If your web part is connectable you would typically call the connection provider here to retrieve data). PostBack click handler sets ViewState via public Property). ConnectionConsumer method is called if web part is connectable. Sets the connection providers interface in the webpart). Thursday, February 21, 2013.
sharepointstack.blogspot.com
SharePointStack: May 2013
http://sharepointstack.blogspot.com/2013_05_01_archive.html
Friday, May 31, 2013. Get and Set User in Client People Picker using Javascript Client Object Model. There is a unique scenario where I have to pick user from a Custom People Picker on a Custom Form and then Push that User to a Client People Picker of a List Item using Javascript Client Object Model. InOrder to achieve this functionality, I first tried to fetch the User from the Custom People Picker on the Form using JQuery,. Var userInfoList = siteObjects.web.get siteUserInfoList();. SiteObjects.Use...
sharepointstack.blogspot.com
SharePointStack: How to get People Picker entry using JavaScript Client Object Model
http://sharepointstack.blogspot.com/2013/05/how-to-get-people-picker-entry-using.html
Friday, May 31, 2013. How to get People Picker entry using JavaScript Client Object Model. To fetch People picker value from People Editor Control, JQuery comes to rescue when we talk in terms of Javascript Client Object Model. Var loginName = $("span.ms-entity-resolved").attr("title"); / Returns the Login Name eg. ind ali.yasir. Var displayName = $("span.ms-entity-resolved div:first-child").attr("displaytext"); Returns Display Name as 'Ali Yasir'. Hope this will help! Labels: Client Object Model.
sharepointstack.blogspot.com
SharePointStack: Get and Set User in Client People Picker using Javascript Client Object Model
http://sharepointstack.blogspot.com/2013/05/get-and-set-user-in-client-people.html
Friday, May 31, 2013. Get and Set User in Client People Picker using Javascript Client Object Model. There is a unique scenario where I have to pick user from a Custom People Picker on a Custom Form and then Push that User to a Client People Picker of a List Item using Javascript Client Object Model. InOrder to achieve this functionality, I first tried to fetch the User from the Custom People Picker on the Form using JQuery,. Var userInfoList = siteObjects.web.get siteUserInfoList();. SiteObjects.Use...
sharepointstack.blogspot.com
SharePointStack: December 2012
http://sharepointstack.blogspot.com/2012_12_01_archive.html
Tuesday, December 25, 2012. FBA Cookie getting expired only in Safari and Chrome. This blog is for all those guys who have tried their level best to solve this unique issue and still couldnt get the root cause why the Form Based Authentication Cookie getting expired daily ( almost after some hours ) ONLY on Safari and Chrome browser. I have spend lot many days finding the root cause of this issue and yes also solve it for clients. Thanks to blogger: Scott. STEP 1: Modify your web.config file. Hope my abo...
sharepointstack.blogspot.com
SharePointStack: How to Ensure User using JavaScript Client Object Model
http://sharepointstack.blogspot.com/2013/05/how-to-ensure-user-using-javascript.html
Friday, May 31, 2013. How to Ensure User using JavaScript Client Object Model. In Server Object Model, web.EnsureUser(loginName) checks whether the user is there in the sharepoint site and if not present , it automatically adds that user into the site. Similarly using Client Object Model, Microsoft has introduced in same fashion using ECMA Client Object Model we can achieve same functionality. Http:/ msdn.microsoft.com/en-us/library/ff408786(v=office.14).aspx. I hope this will be helpful. Working with th...
sharepointstack.blogspot.com
SharePointStack: April 2013
http://sharepointstack.blogspot.com/2013_04_01_archive.html
Sunday, April 14, 2013. Setting Up Environment Configuration of Windows Phone 8 development. A very common and simple blog today. Setting Up Environment Configuration of Windows Phone 8 development". Your first task when it comes to Windows Phone development is getting your development environment up and running. It’s a three step process:. Windows 8 Pro edition or greater is required. Your machine must have a processor that supports Second Level Address Translation (SLAT). For installing Windows 8 you h...
sharepointstack.blogspot.com
SharePointStack: Setting Up Environment Configuration of Windows Phone 8 development
http://sharepointstack.blogspot.com/2013/04/setting-up-environment-configuration-of.html
Sunday, April 14, 2013. Setting Up Environment Configuration of Windows Phone 8 development. A very common and simple blog today. Setting Up Environment Configuration of Windows Phone 8 development". Your first task when it comes to Windows Phone development is getting your development environment up and running. It’s a three step process:. Windows 8 Pro edition or greater is required. Your machine must have a processor that supports Second Level Address Translation (SLAT). For installing Windows 8 you h...
sharepointstack.blogspot.com
SharePointStack: January 2013
http://sharepointstack.blogspot.com/2013_01_01_archive.html
Saturday, January 19, 2013. How to create a Dynamic. Many a times you might come into a situation when you have to deal with some complex query building and the scenario is like you have to pull the data from a SharePoint list and the records on which you need to fire the Where clause is not fixed. So, you to need to write a dynamic query where the OR tags changes accordingly. Here is the code:. This lstPeers can be of any type like array or List Type or Collection. Here is your Dynamic Query :. The erro...