Skip to main content

Posts

Showing posts from July, 2014

SharePoint 2013 - Suggested Content Browser Locations

In SharePoint Site collection, we can configure “Suggested Content Browser Locations” to access the directories easily. When we configure these locations, we can see them as drop down to the users when we select the content SharePoint. To view this link, we need to activate the publishing feature. We can configure suggested content browser location at site collection level. To configure suggested content browser locations, navigate to Site Settings, in the Site Collection Administration section, click on “Suggested Content Browser Locations” link. We can see the list. Click on new item to create new suggested location link. To check the suggested content browser location navigates to any page, edit the page. Select Insert option. In the Select Asset dialog, We can see the Suggested link drop down as shown the image below.

SharePoint 2013 Autocomplete textboxes using the term store and CSOM

 I am going to use a simple set of terms using state names in the From Sharepoint Deparment.  My terms are included in a group named  Classification  and a Term Set named  City and Department .  Here is what my term store looks like. We then need to add a heap of JavaScript references.  Some of these are included already, but specifically we need to load  SP.Taxonomy.js .  We also need to include  init.js  as I mentioned in an earlier  blog post . < script   type ="text/javascript"   src ="../Scripts/jquery-1.7.1.min.js"></ script > < script   type ="text/javascript"   src ="/_layouts/15/MicrosoftAjax.js"></ script > < script   type ="text/javascript"   src ="/_layouts/15/init.js"></ script > < script   type ="text/javascript"   src ="/_layouts/15/sp.runtime.js"></ script > < script   type ="text/javascript"   s...