Skip to main content

Home/ Microsoft SharePoint Tips & Tricks/ Group items tagged using

Rss Feed Group items tagged

trimantra

Best practice for user permission to SharePoint site or list | Trimantra Blog - 0 views

  •  
    Generally we have two kind of scenario when we set-up a SharePoint site. One, public facing site and in other case site is used in intranet- enterprise wide. In later case if we do not want to use anonymous access we use authenticated users as "Domaindomain users" When we set-up access permission to site or list under a site, we need to consider following cases and use the best suitable one. If we do not set up the access permission properly then it will be a risk factor to the site
  •  
    Generally we have two kind of scenario when we set-up a SharePoint site. One, public facing site and in other case site is used in intranet- enterprise wide. In later case if we do not want to use anonymous access we use authenticated users as "Domaindomain users" When we set-up access permission to site or list under a site, we need to consider following cases and use the best suitable one. If we do not set up the access permission properly then it will be a risk factor to the site
trimantra

Using SharePoint Manager to find Content Type usage - 0 views

  •  
    I had created a custom content type and used that content type in list. Then I deleted the list and after that I wanted to delete content type but it was showing error that the content type is in use. I used Sharepoint manager to find out content type connection. Great tool. To download the tool visit the link http://spm.codeplex.com/releases/view/51438
  •  
    I had created a custom content type and used that content type in list. Then I deleted the list and after that I wanted to delete content type but it was showing error that the content type is in use. I used Sharepoint manager to find out content type connection. Great tool. To download the tool visit the link http://spm.codeplex.com/releases/view/51438
Emilyn Manuela

How to Use JavaScript Object Model to Add Item into List - 1 views

  •  
    In this post, you will learn about how to add an item to SharePoint 2013 list using JavaScript client object model. If you have a …
Hostforlife Hosting

How to Cancel Workflows Which Are Not Completed - 1 views

  •  
    Here, we can use a very good way using PowerShell approach to cancel not completed workflows in SharePoint 2013.
Chandhiya Marimuthu

Free Tech Webinar on Automate your business with sharepoint - 0 views

  •  
    Presenter Name: William Huckabee Date & Time: Thursday, September 13, 2012 - 02:00 PM - 03:00 PM EST Registration: http://bit.ly/OuybaZ Webinar Highlights: The number one thing most businesses are looking for is ways to save money. One of the easiest ways to do this is by the use of technologies that will automate your business processes. The best technology I have found is SharePoint. There are a variety of ways it can help make it easier to run your business. Some of the ways are Team Collaboration, automating your manual business processes, better ways to store/track your documents, and contact management. While you can buy several products that will do all of these things, the best way to do it is with items that are free. You can set up and run SharePoint for next to no money. One would almost say for free. We will provide following details in webinar section. 1. How to use SharePoint to Automate Your Business? 2. How to use tools in SharePoint ? 3. How to create solutions in SharePoint designer?
trimantra

Exploring "X-Frame- Options" in IFrame for web-based application | Trimantra ... - 0 views

  •  
    In our daily life as a web developer we generally use lots of HTML tags in our website. From H1 tag to FORM tag, each tag has their own functionality and has some limitations. In this blog we specifically focus on IFRAME tag and its Do's and Don'ts. To know…
  •  
    In our daily life as a web developer we generally use lots of HTML tags in our website. From H1 tag to FORM tag, each tag has their own functionality and has some limitations. In this blog we specifically focus on IFRAME tag and its Do's and Don'ts. To know…
trimantra

Create a Custom config file for Codeigniter | Trimantra Blog - 0 views

  •  
    By default, CodeIgniter has one primary config file, located at "application/config/config.php" What if we want to have a custom configuration file? What if we want to create custom config array with desired name? Codeigniter allows a developer to create custom file but developer has to define values with $config array developer cannot define a custom variable or array inside this new file and use it.
  •  
    By default, CodeIgniter has one primary config file, located at "application/config/config.php" What if we want to have a custom configuration file? What if we want to create custom config array with desired name? Codeigniter allows a developer to create custom file but developer has to define values with $config array developer cannot define a custom variable or array inside this new file and use it.
trimantra

Hiding SharePoint Application page (_Layouts Pages ) For Public Facing Site | Trimantra... - 0 views

  •  
    For publishing site it is recommended to hide "_layouts" pages from crawling by search engines. When you create SharePoint public facing site using "publishing site" template it activates the feature "ViewFormPagesLockDown". This feature prevents users from opening any of pages from &_layouts folder.
  •  
    For publishing site it is recommended to hide "_layouts" pages from crawling by search engines. When you create SharePoint public facing site using "publishing site" template it activates the feature "ViewFormPagesLockDown". This feature prevents users from opening any of pages from &_layouts folder.
trimantra

Get Sharepoint Term's Custom Local Property values (Client Object Model) | Trimantra Blog - 0 views

  •  
    We can get values of Custom local properties of Term using Client Object Model. Register following files on your page: <SharePoint:ScriptLink ID="spPage" Name="sp.js" LoadAfterUI="true" Localizable="false" runat="server" /> <script type="text/javascript" src="../../../_layouts/15/SP.Taxonomy.js"></script>   Js code to get Custom Local Property values: $(document).ready(function () { SP.SOD.executeOrDelayUntilScriptLoaded(loadAllTerms, 'SP.Taxonomy.js'); }); //loads all existing terms function…
  •  
    We can get values of Custom local properties of Term using Client Object Model. Register following files on your page: <SharePoint:ScriptLink ID="spPage" Name="sp.js" LoadAfterUI="true" Localizable="false" runat="server" /> <script type="text/javascript" src="../../../_layouts/15/SP.Taxonomy.js"></script>   Js code to get Custom Local Property values: $(document).ready(function () { SP.SOD.executeOrDelayUntilScriptLoaded(loadAllTerms, 'SP.Taxonomy.js'); }); //loads all existing terms function…
trimantra

Create List for multilingual site in SharePoint 2013 | Trimantra Blog - 0 views

  •  
    In our previous blog we have seen that how to create site column, content type for multilingual site. Now we will create custom list for all multilingual site with different name on feature activation.   try { using (SPSite site = new SPSite(RootSiteUrl)) { SPWebCollection allWebs = site.AllWebs; foreach (SPWeb…
  •  
    In our previous blog we have seen that how to create site column, content type for multilingual site. Now we will create custom list for all multilingual site with different name on feature activation.   try { using (SPSite site = new SPSite(RootSiteUrl)) { SPWebCollection allWebs = site.AllWebs; foreach (SPWeb…
trimantra

Get Sharepoint Term's Custom Local Property values (Server side) | Trimantra Blog - 0 views

  •  
    We can get values of Custom local properties using server side code. There is no direct way to get custom local from terms. For that we need to do manual coding which is as follow:   /// Get Custom Local Property values of particular term. private void GetCustomLocalPropertyValues(Term term) {…
  •  
    We can get values of Custom local properties using server side code. There is no direct way to get custom local from terms. For that we need to do manual coding which is as follow:   /// Get Custom Local Property values of particular term. private void GetCustomLocalPropertyValues(Term term) {…
trimantra

SharePoint site migration from 2007(MOSS) to 2010 | Trimantra Blog - 0 views

  •  
    To migrate site we are using Database attach method. Configurations and setting:- Here AD of both server is same. If one (normal) user from AD is able to login in 2007 server and not able to login in 2010 then you need to set up user profile for 2010 sever.
  •  
    To migrate site we are using Database attach method. Configurations and setting:- Here AD of both server is same. If one (normal) user from AD is able to login in 2007 server and not able to login in 2010 then you need to set up user profile for 2010 sever.
trimantra

Url Rewriting In SharePoint 2010 | Trimantra Blog - 0 views

  •  
    Many times there is requirement for SharePoint 2010 public facing site to use short url. Like http://example.com/BussinessBanking instead of http://example.com/Pages/BussinessBanking.aspx URL Rewrite is a URLs management component for IIS7. Although it's called URL Rewrite but it allows you to create and manage both URL rewrites and redirects.
  •  
    Many times there is requirement for SharePoint 2010 public facing site to use short url. Like http://example.com/BussinessBanking instead of http://example.com/Pages/BussinessBanking.aspx URL Rewrite is a URLs management component for IIS7. Although it's called URL Rewrite but it allows you to create and manage both URL rewrites and redirects.
trimantra

Hiding SharePoint Application page (_Layouts Pages ) For Public Facing Site - 0 views

  •  
    For publishing site it is recommended to hide "_layouts" pages from crawling by search engines. When you create SharePoint public facing site using "publishing site" template it activates the feature "ViewFormPagesLockDown".
  •  
    For publishing site it is recommended to hide "_layouts" pages from crawling by search engines. When you create SharePoint public facing site using "publishing site" template it activates the feature "ViewFormPagesLockDown".
trimantra

The site template requires that the Feature - 0 views

  •  
    Most of the time we face error, when we try to create a SharePoint site using site template or web template. The error says like this "The site template requires that the Feature {GUID} be activated in the site collection"How will you know the name of the feature? - See more at: http://blog.trimantra.com/the-site-template-requires-that-the-feature
  •  
    Most of the time we face error, when we try to create a SharePoint site using site template or web template. The error says like this "The site template requires that the Feature {GUID} be activated in the site collection"How will you know the name of the feature? - See more at: http://blog.trimantra.com/the-site-template-requires-that-the-feature
Eric Kraus

Office Web Apps (Installed on SharePoint 2010 Products) - 1 views

  •  
    The articles in this section are intended for IT Pros planning to use Office Web Apps installed on SharePoint 2010 Products on-premises in their organizations
Robert Brown

Ready Conference Plus - Cost Saver Conferencing Solution and Meeting Tool For Your Busi... - 0 views

  •  
    Ready Conference Plus is an easy to use conferencing solution and meeting tool designed to cut cost in your business, save you time, save you stress & aid you in working more efficiently than ever. Ready Conference Plus is an incredible useful tool for your business and your life.
Robert Brown

Audio and Web Conferencing is the Ideal Conferencing Solution - 0 views

  •  
    Audio and web conferencing service is a reliable, easy-to-use and cost-efficient solution to meet your business unique requirements for an ideal conferencing solution.
Robert Brown

Cloud Based Conferencing Services Benefit Video, Audio and Web Conferencing - 0 views

  •  
    Top 10 facts about cloud conferencing services - Less travel, web and audio integration, saving money, efficiency, expertise, interoperability, ease of use, security, scalability and reliability.
trimantra

Error (The method &quot;GetItems&quot; of the type &quot;List&quot; with id is blocked ... - 0 views

  •  
    We might have seen this error several time. (The method "GetItems" of the type "List" with id is blocked by the administrator on the server )Here is my scenario. We had launched a public facing website built in SharePoint 2010. Basically this error occurs when site has anonymous access and where Client Object Model is used for accessing list on the site.
1 - 20 of 55 Next › Last »
Showing 20 items per page