Responsive SharePoint WSP Edition

Size: px
Start display at page:

Download "Responsive SharePoint WSP Edition"

Transcription

1 Responsive SharePoint WSP Edition Version 1.0 Bootstrap 3 and Foundation 4 for SP 2013 The Bootstrap 3 and Foundation 4 frameworks integrated with Microsoft SharePoint 2013, including several master pages for both SharePoint Foundation and SharePoint Server. It also includes a Publishing feature for SharePoint Foundation. Based on Bootstrap version and Foundation version Includes all source files, installation and usage instructions. Authors: Ugo Brunet Raphael Londner Based on the work of : Eric Overfield D arce Hess Gilda Spencer

2 Table of Contents Responsive SharePoint WSP Edition Table of Contents... 2 Why Responsive SharePoint WSP Edition?... 3 What is in this Package?... 5 Installation Instructions... 6 Initial configuration for mobile devices... 6 Responsive for SharePoint Foundation 2013 solution... 7 Publishing for SharePoint Foundation 2013 solution Responsive for SharePoint Server 2013/Office365 sandboxed solution Customization SharePoint Server 2013/Office How to modify existing Master Pages and Page Layouts How to create new Master Pages and new Page Layouts SharePoint Foundation (with Publishing Infrastructure) How to modify existing Master Pages How to modify existing Page Layouts How to create new Master Pages How to create new Page Layouts RioLinx 2013 Page 2

3 Why Responsive SharePoint WSP Edition? This project is based on some of Responsive SharePoint projects on CodePlex originally built by the PixelMill team ( Although it is a great step forward towards a responsive site on SharePoint, there are some limitations that can prevent a wide use of responsive frameworks on SharePoint. First of all, the master pages in this original project are not compatible with SharePoint Foundation 2013, because they use references to the Microsoft Publishing assembly, which is not present in SharePoint Foundation environments. This original project also relied on the new 2013 Design Manager, which is only available in SharePoint Server Moreover, this dependency on Design Manager also required inconvenient style sheet adjustments of the responsive master pages in SharePoint Designer for path based site collection (such as ). Overall, we felt it was a good idea to build standard SharePoint WSP solutions in order to streamline the deployment process and avoid lengthy customizations and manipulations in SharePoint Designer. We first decided to build a SharePoint 2013 Foundation compatible version of the PixelMill project. Unfortunately we had to face some difficulties: - In SharePoint Foundation, we cannot use the $SPUrl expression builder to reference our style sheets and scripts in our master pages, because it s only available with SharePoint Server. We thus had no choice but to use references to files stored in the SharePoint 15 Hive (inside the layouts folder), and that meant our solution had to be a farm solution, not a sandboxed. - We also had to figure out how to use responsive page layouts in SharePoint Foundation, because none of the default web part page layouts available with SharePoint Foundation are responsive. By looking at the way SharePoint Foundation implemented its page templates, we managed to build a custom Responsive Web Part Page content type that allow us to create pages based on a limited number of responsive page templates, also stored in a sub-folder of the _layouts folder. Because we were limited by the number of page templates and because it is impossible for a site administrator to modify those page templates (as she typically doesn t have access to the SharePoint server), we decided to provide a Publishing-like feature for SharePoint Foundation 2013 and to use it to provide page templates that can be stored in a SharePoint library and therefore be easily modified by a site administrator: - We found the Mund Publishing Infrastructure ( but that solution is only compatible with SharePoint Foundation We thus first migrated it to be SharePoint 2013 compatible and modified it slightly to fit our requirements. This 2013-compatible version is available at and is optional. - We then added 3 additional features to our solution to provide Bootstrap 2, Bootstrap 3 and Foundation 4 page layouts in a specific library of a SharePoint Foundation site (those features have a dependency on our SharePoint Foundation 2013 Publishing Infrastructure so you will need to deploy it before you can activate those 3 features). That, any user who has access to SharePoint Designer is able to modify and create new responsive page templates within a SharePoint Foundation site. RioLinx 2013 Page 3

4 When we were done with this first farm solution, the PixelMill team motivated us to implement a solution that would be compatible with Office 365, since Office 365 doesn t support the deployment of farm solutions. Because we weren t bound by the limitations of SharePoint Foundation, we were able to build a sandboxed solution which is compatible with both SharePoint Server 2013 and Office 365. By activating the Publishing Server features, we are able to provide both our responsive master pages and our responsive page templates in the ~site/_catalogs/masterpage folder. In this solution, any user with the permissions to deploy a sandboxed solution can easily and quickly build a SharePoint responsive site in minutes, as well as to add or modify these files by using SharePoint Designer. Here is a list of additional improvements we brought to these solutions: Made all master page MDS-compliant (see Bill Baer s blog for an introduction to MDS) Added the left navigation bar as a dropdown menu in mobile views Added 3-level sub-sites in navigation bar (in Bootstrap 3 only) Added OpenGraph tags to the page layouts compatible with the SharePoint Foundation Publishing Infrastructure Removed the search control when viewed on small screens Remove the right suite bar controls (Share, Sync, Edit, etc ) when viewed on mobile screens Remove the Office 365 suite bar links when viewed on mobile screens Reduced the site logo image when viewed on mobile screens If you find any issues with these solutions, please provide feedback and comments at the CodePlex project discussion area, RioLinx 2013 Page 4

5 What is in this Package? Within the RioLinx.SharePoint.Responsive.zip file you will find 2 directories: ResponsiveFoundation This folder contains the WSP farm solution file to be deployed in a SharePoint Foundation 2013 farm, as well as scripts you can use to easily deploy the WSP solution file as a SharePoint Administrator. You may also deploy this solution is a SharePoint Server 2013 environment, but you will have to create your own responsive Page Layouts if you plan to use the SharePoint Server Publishing Infrastructure. ResponsiveServer This folder contains a sandboxed WSP solution to be used with the SharePoint Server Publishing (site collection and site) features activated. This solution is compatible with both SharePoint Server 2013 and Office 365. RioLinx 2013 Page 5

6 Installation Instructions Initial configuration for mobile devices In order for mobile devices to actually display the responsive pages (and not the default SharePoint mobile view), there are 2 options: 1. If you have access to the SharePoint file system on your front-end servers, you can disable the mobile view for all sites in a specific web application s zone by adding the following in the zone s web.config file, inside the <system.web> section: <browsercaps> <result type="system.web.mobile.mobilecapabilities, System.Web.Mobile, Version= , Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> <filter>ismobiledevice=false</filter> </browsercaps> The significant advantage of this solution is that all sites in that web application are instantly responsive-capable, but that might not be an available option. 2. If you don t have access to the SharePoint file system (which is the case in Office 365), you have no other option than to disable the Mobile Browser View site feature on each and every site and sub-site that may be accessed by mobile users. This is obviously inconvenient if you have a lot of sites and subsites, but that might be your only choice. RioLinx 2013 Page 6

7 Responsive for SharePoint Foundation 2013 solution 1. Extract the RioLinx.SharePoint.Responsive.zip file on one of your SharePoint web front end server Navigate to the ResponsiveFoundation folder and run DeployResponsiveFoundation.bat 2. This will deploy your solution globally to all your SharePoint web front-end servers. 3. Next, navigate to the Site Settings page of your site collection and select Site collection features. Search for the Responsive SharePoint - Master Pages for SharePoint Foundation 2013 feature and activate it. 4. Next, go back to your Site Settings and select Select Master Page (in the Look and Feel section). 5. Pick the responsive master page (Bootstrap 2, Bootstrap 3 or Zurb Foundation 4.3.2) you want to use and click on the scope you want it to be used (either this site or all its sub-sites). RioLinx 2013 Page 7

8 6. You should get a Responsive Master Page applied to your site (below Bootstrap 3): Note: the Bootstrap 3 master page is the only master page capable to show sub-sites down to the 3 rd level. Because of still unresolved CSS issues, the Zurb Foundation 4 master page only shows 1 st level sub-sites and don t provide any fly-out menus: RioLinx 2013 Page 8

9 7. In order to use the responsive page templates, navigate to Site Contents and select Site Pages: 8. We need to provide the page template library with some responsive layouts. Select Library (in the SharePoint ribbon) and click on Library Settings. Then, under Content Types, click on Add from existing site content types. 9. Select Responsive Content Types in the content types drop-down list and add the Responsive Web Part Page content type. When you re done, press OK RioLinx 2013 Page 9

10 10. Next, navigate back to your Site Pages library and select Files New document Responsive Web Part Page: 11. Finally, complete all the required fields, choose the layout you want to use (make sure you select a a layout template that matches your responsive master page), select the library you want the page to be created in (e.g. Site Pages) and click Create: RioLinx 2013 Page 10

11 12. You should get a responsive page (decrease your browser width to see the mobile view) Below is a screenshot of a page created with the Orbit Page Template. RioLinx 2013 Page 11

12 Publishing for SharePoint Foundation 2013 solution The installation of this solution is optional and is only recommended if you want to take advantage of a lightweight publishing feature in SharePoint Foundation, similar to (but not iso-functional) the Publishing Infrastructure available in SharePoint Server. 1. Download the SharePoint.Foundation.Publishing.2013.zip file from the SharePoint Foundation 2013 Publishing Infrastructure project on CodePlex ( and extract it somewhere on your SharePoint server. Extract it and run the InstallFoundationPublishing.bat 1. Navigate to the SharePoint Central Administration, and under System Settings, click Solution Management. You should see that the sharepoint.foundation.publishing.2013.wsp is not deployed to any web application yet. Select it and on the next page, click Deploy Solution 2. Select the Web application on which you wish to enable the solution and click ok RioLinx 2013 Page 12

13 2. Navigate to your site collection, and in the Site Settings activate both the Site Collection and Site features of Publishing for Foundation. In Site collection features, please activate SharePoint Foundation Publishing Infrastructure. Then in Manage site features, activate SharePoint Foundation Publishing. RioLinx 2013 Page 13

14 3. Next, provide your site with some responsive page layouts. Go back to the Site collection features and activate the features corresponding to the responsive framework you want to use (Bootstrap 2, Bootstrap 3 or Zurb Foundation 4.3.2): 4. In order to create new pages using those page layouts, navigate to Site Contents and select Web Pages (under Lists, Libraries, and other Apps). Then click Files (in the ribbon), New document and select any of the four items. 5. Complete at least the Title and Page Url fields and select the Layout you want to use, then press the Create button( RioLinx 2013 Page 14

15 Note: the Open Graph fields are used to generate Facebook Open Graph meta tags that can be useful for external-facing sites note that the Open Graph Image Url field is not used yet because of an unresolved issue with how SharePoint generates urls as text). 6. Congratulations, your page should now be responsive! (see screenshot of a Bootstrap 3 Orbit page on next page) RioLinx 2013 Page 15

16 RioLinx 2013 Page 16

17 Responsive for SharePoint Server 2013/Office365 sandboxed solution 1. First, deactivate the Mobile Browser View site feature, otherwise users accessing the site from real, mobile devices will be defaulted to the SharePoint standard mobile view of the site. 2. Second, make sure that both Site and Web features for SharePoint Server Publishing are activated. Browse to the Site Settings page and in Site collection features, make sure SharePoint Server Publishing Infrastructure is activated. Then browse to Manage site features and make sure SharePoint Server Publishing is activated. If those 2 features are not activated yet, please activate them. RioLinx 2013 Page 17

18 3. Next, browse to Site Settings and select Solutions (under Web Designer Galleries). Select Upload Solution in the SharePoint Ribbon. Browse to your local ResponsiveServer folder and upload the RioLinx.SharePoint.Responsive.Server.wsp file. 4. After uploading the solution, activate it by selecting Activate in the following screen and wait a few seconds (that screen is not very responsive ) before the screen disappears and the solution appears as activated : RioLinx 2013 Page 18

19 5. Verify that the Responsive SharePoint - Master Pages for SharePoint Server 2013 site collection feature has been activated. 6. Now you should be able to apply a responsive Master Page. Go to your Sites Settings and click on Master Page (under Look and Feel) 7. Select the master page you want to apply to both Site Master Page and System Master Page, and press OK. RioLinx 2013 Page 19

20 8. You should now have a Responsive site, although the home site is not responsive yet. \ The following screenshots show a SharePoint Zurb Foundation site as seen in a real LG Android device. RioLinx 2013 Page 20

21 9. In order to use the responsive page layouts, browse to Site Content and select Pages 10. Select Files (in the ribbon), New Document and select Article Page. RioLinx 2013 Page 21

22 11. Finally, complete the required fields and select a page layout that matches the master page you previously applied. Then click Create. 12. The result should be a Responsive Web Page : RioLinx 2013 Page 22

23 Customization SharePoint Server 2013/Office 365 How to modify existing Master Pages and Page Layouts 1. In order to modify either the master pages or the page layouts without access to the SharePoint server, you must use SharePoint Designer. Connect to your site and browse to All files _catalogs/masterpage and select the master page or page layout you want to modify. 2. Select Edit File Edit File in Advanced mode RioLinx 2013 Page 23

24 You may also download the source code of the WSP solutions and modify or add master pages and page layouts in the Visual Studio project (that s our preferred approach, but only works if you can re-deploy the solution to your server). RioLinx 2013 Page 24

25 How to create new Master Pages and new Page Layouts 1. In order to create either a new master page or a new page layout, you need to use SharePoint Designer. Connect to your site and go to either Page Layouts or Master Pages, then click on New Page Layout or Blank Master Page. Then complete the required fields and click OK. 2. Copy and paste the content of an existing, responsive master page or page layout and make the necessary modifications. RioLinx 2013 Page 25

26 SharePoint Foundation (with Publishing Infrastructure) This section only covers customizations when the SharePoint Foundation Publishing Infrastructure is present in the SharePoint Foundation farm, mostly because the only other option is to download the source code of RioLinx.SharePoint.Responsive.Foundation and add additional page layouts in the Layouts/PageTemplates folder. Since developer-oriented tasks are out-of-scope in this user guide, we only focus on customizations that can be performed by end users, without requiring access to Visual Studio and the SharePoint file system. How to modify existing Master Pages Please refer to the process described above for SharePoint Server 2013/Office 365 How to modify existing Page Layouts Important Note: modifications to existing page layouts currently only affect new pages, not existing ones (the SharePoint Foundation Publishing Infrastructure does not yet include the ability to refresh existing pages when the underlying page template has changed). 1. Open your site in SharePoint Designer, navigate to All Files PageLayouts, right-click on the page layout you want to modify and select Edit File in Advanced Mode. RioLinx 2013 Page 26

27 2. Make your desired modifications and save. For instance, in the screenshot below, we add a footer row with 2 Web Part Zones in the Bootstrap 3 Banner page layout: 3. Create a new page based on your modified page layout. The changes you made should now appear in new pages (the screenshot below shows the additional Footer Left and Footer Right Web Part Zones added to the BS3 Banner page layout): RioLinx 2013 Page 27

28 How to create new Master Pages Please refer to the process described above for SharePoint Server 2013/Office 365 How to create new Page Layouts 1. Navigate to the root web of your site collection and in the Site Contents page select Page Layouts. 2. Select Files New Document SPF Page Layout 3. In the page that opens, select the proper content type (usually SPF Page Layout), enter a Page Url, a Title and an optional Description for your new page layout and click OK: RioLinx 2013 Page 28

29 4. Open your site in SharePoint Designer, navigate to All Files PageLayouts, select an existing page layout that will serve as the base for your new page layout and select Open. 5. Press Ctrl+A, Ctrl+C to select the whole page layout content and copy it to the clipboard. Close the file. 6. Open your site in SharePoint Designer, navigate to All Files PageLayouts, right-click on the page layout you just created and select Edit File in Advanced Mode. 7. Select the default content of the page and press Ctrl+V to paste the content of the page layout you opened in steps 4 and 5 above. 8. Add or modify any content you need in new page layout (in the screenshot below, we added a footer row): RioLinx 2013 Page 29

30 9. Save your file and close SharePoint Designer. You can also optionally press F12 in SharePoint Designer to open your new page layout in Internet Explorer and verify that it contains the content you put in. 10. Create a new page in the Web Pages library of your site and choose the new page layout you created: 11. Edit your page and verify that the layout matches your new page layout: RioLinx 2013 Page 30

BindTuning Installations Instructions, Setup Guide. RECAP Setup Guide

BindTuning Installations Instructions, Setup Guide. RECAP Setup Guide BindTuning Installations Instructions, Setup Guide RECAP Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves, our

More information

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide BindTuning Installations Instructions, Setup Guide Invent Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves, our

More information

BindTuning Installations Instructions, Setup Guide. Empower Setup Guide

BindTuning Installations Instructions, Setup Guide. Empower Setup Guide BindTuning Installations Instructions, Setup Guide Empower Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves,

More information

BindTuning Installations Instructions, Setup Guide. Zeus Setup Guide

BindTuning Installations Instructions, Setup Guide. Zeus Setup Guide BindTuning Installations Instructions, Setup Guide Zeus Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves, our

More information

Coveo Platform 6.5. Microsoft SharePoint Connector Guide

Coveo Platform 6.5. Microsoft SharePoint Connector Guide Coveo Platform 6.5 Microsoft SharePoint Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Search for Dynamics v Installation Guide

Search for Dynamics v Installation Guide Search for Dynamics v1.4.3.1 Installation Guide SharePoint 2013 and 2016 Contents Chapter 1: Prerequisites... 3 Chapter 2: Install Search for Dynamics... 4 Install SharePoint Components...4 Install Permissive

More information

Introduction to Prime 4. Prerequisites 5. Deploying the Database 7. Updating the Web.Config 10. Turn-Off SharePoint Mobile 13

Introduction to Prime 4. Prerequisites 5. Deploying the Database 7. Updating the Web.Config 10. Turn-Off SharePoint Mobile 13 Prime Installation Copyright 2011 2013 Atera Prime, Inc. All rights reserved. All trademarks and registered trademarks are property of their respective owners. Prime Installation 1 Introduction 1.1 1.2

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365...3 LICENSE ACTIVATION...4

More information

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide KWizCom Corporation SharePoint Repeating Rows Field Type User Guide Copyright 2005-2016 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2

More information

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide KWizCom Corporation SharePoint Repeating Rows Field Type User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2

More information

SharePoint 2010 Central Administration/Configuration Training

SharePoint 2010 Central Administration/Configuration Training SharePoint 2010 Central Administration/Configuration Training Overview: - This course is designed for the IT professional who has been tasked with setting up, managing and maintaining Microsoft's SharePoint

More information

SHAREPOINT 2013 DEVELOPMENT

SHAREPOINT 2013 DEVELOPMENT SHAREPOINT 2013 DEVELOPMENT Audience Profile: This course is for those people who have couple of years of development experience on ASP.NET with C#. Career Path: After completing this course you will be

More information

81225 &SSWSSS Call Us SharePoint 2010 S:

81225 &SSWSSS Call Us SharePoint 2010 S: 81225 &SSWSSS Call Us SharePoint 2010 S: +91 93925 63949 Course Objectives At the end of the course, students will be able to:! Understand IIS Web Server and hosting websites in IIS.! Install and configure

More information

Quick Start Guide for BPA xrm Administrators MAKES PEOPLE HAPPY

Quick Start Guide for BPA xrm Administrators MAKES PEOPLE HAPPY Quick Start Guide for BPA xrm Administrators MAKES PEOPLE HAPPY Contents Scope... 4 Installation / System Requirements... 5 Prerequisites... 5 Installing Your BPA xrm Application... 5 First Steps with

More information

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide KWizCom Corporation SharePoint Repeating Rows Field Type User Guide Copyright 2005-2011 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario

More information

Microsoft Windows SharePoint Services

Microsoft Windows SharePoint Services Microsoft Windows SharePoint Services SITE ADMIN USER TRAINING 1 Introduction What is Microsoft Windows SharePoint Services? Windows SharePoint Services (referred to generically as SharePoint) is a tool

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 5/6/2016) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 Before Starting - Is your software up to date?...

More information

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide BindTuning Installations Instructions, Setup Guide Invent Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves, our

More information

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide

KWizCom Corporation. SharePoint Repeating Rows Field Type. User Guide KWizCom Corporation SharePoint Repeating Rows Field Type User Guide Copyright 2005-2014 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2

More information

DISA Enterprise Portal Service User FAQ. Collaboration Services. Site Creation. Add a Web Part to a Page

DISA Enterprise Portal Service User FAQ. Collaboration Services. Site Creation. Add a Web Part to a Page DISA Enterprise Portal Service User FAQ Collaboration Services DISA's Collaboration Services is the DoD's Organizational Web Presence solution. Leverage DISA's Collaboration Services to create pages of

More information

Virto SharePoint Forms Designer for Office 365. Installation and User Guide

Virto SharePoint Forms Designer for Office 365. Installation and User Guide Virto SharePoint Forms Designer for Office 365 Installation and User Guide 2 Table of Contents KEY FEATURES... 3 SYSTEM REQUIREMENTS... 3 INSTALLING VIRTO SHAREPOINT FORMS FOR OFFICE 365... 3 LICENSE ACTIVATION...

More information

Content Deployment Instructions Sharepoint 2010 Codeplex

Content Deployment Instructions Sharepoint 2010 Codeplex Content Deployment Instructions Sharepoint 2010 Codeplex Installation - Tools Auto SP Installer SharePoint Content Deployment Wizard SharePoint Enhanced Solutions - sp2010enhsolutions.codeplex.com/ This

More information

Peers Technologies Pvt. Ltd. SHAREPOINT 2010 SHAREPOINT 2010 USAGE SHAREPOINT SERVER 2010 ADMINISTRATION SHAREPOINT SERVER 2010 DESIGN

Peers Technologies Pvt. Ltd. SHAREPOINT 2010 SHAREPOINT 2010 USAGE SHAREPOINT SERVER 2010 ADMINISTRATION SHAREPOINT SERVER 2010 DESIGN Page 1 Peers Technologies Pvt. Ltd. Course Brochure 2010 2010 USAGE SERVER 2010 ADMINISTRATION SERVER 2010 DESIGN SERVER 2010 DEVELOPMENT Page 2 SharePoint 2010 Usage Course Outline This course takes users

More information

SharePoint 2010 Developer Core Skills Course Length: 5 days Price: $3,000

SharePoint 2010 Developer Core Skills Course Length: 5 days Price: $3,000 SharePoint 2010 Developer Core Skills Course Length: 5 days Price: $3,000 Summary Microsoft SharePoint 2010 has reached a new level of features for.net and web development that far exceeds previous versions.

More information

Simple Print.

Simple Print. SharePoint Knowledge Base Solution Accelerator for SharePoint 2010 Release 1.5 (SA05) Overview System Requirements Installation Configuration Using KB Accelerator Licensing and Activation System Requirements

More information

WORKING PROCESS & WEBSITE BEST PRACTICES Refresh Creative Media

WORKING PROCESS & WEBSITE BEST PRACTICES Refresh Creative Media WORKING PROCESS & WEBSITE BEST PRACTICES Refresh Creative Media 1. INTRODUCTION Thank you for choosing Refresh Creative Media for your website development needs. This document describes our working process

More information

Keep everyone on the same page

Keep everyone on the same page Keep everyone on the same page 1 Build your site in a few clicks Creating a site is easy just click new site and give your site a name. Each site comes with a shared notebook, a newsfeed, and a document

More information

Script.byu.edu SharePoint Instructions

Script.byu.edu SharePoint Instructions Script.byu.edu SharePoint Instructions Site Actions Menu Go to script.byu.edu, click on Authenticate at the bottom of page, you will be prompted to enter a username and password, use your netid and password

More information

E-Business Systems 1 INTE2047 Lab Exercises. Lab 5 Valid HTML, Home Page & Editor Tables

E-Business Systems 1 INTE2047 Lab Exercises. Lab 5 Valid HTML, Home Page & Editor Tables Lab 5 Valid HTML, Home Page & Editor Tables Navigation Topics Covered Server Side Includes (SSI) PHP Scripts menu.php.htaccess assessment.html labtasks.html Software Used: HTML Editor Background Reading:

More information

Rehmani Consulting, Inc. VisualSP 2013 Installation Procedure. SharePoint-Videos.com

Rehmani Consulting, Inc. VisualSP 2013 Installation Procedure. SharePoint-Videos.com Rehmani Consulting, Inc. VisualSP 2013 Installation Procedure SharePoint-Videos.com info@sharepointelearning.com 630-786-7026 Contents Contents... 1 Introduction... 2 Take inventory of VisualSP files...

More information

INDEX COPYRIGHTED MATERIAL

INDEX COPYRIGHTED MATERIAL INDEX $SPUrl, 267 8-bit colors, 307 960 Grid, 352 356, 365 About.com, 163 A Add a Page menu, 273, 335 Add an App menu, 16, 24 adjacent sibling selector, CSS, 155 AjaxDelta controls, 209 210, 217 alternate

More information

Lightning Conductor Web Part 2013 Manual 2 Last update: October 24, 2014 Lightning Tools

Lightning Conductor Web Part 2013 Manual 2 Last update: October 24, 2014 Lightning Tools Lightning Conductor Web Part 2013 Manual 2 Last update: October 24, 2014 Lightning Tools Table of Contents Installing the Lightning Conductor 2013 Web Part... 2 Uploading the Lightning Conductor solution

More information

Sparqube Lookup Column

Sparqube Lookup Column Sparqube Lookup Column Contents Overview... 2 Features... 3 Setup... 4 Requirements... 4 Installation... 4 Licensing... 4 Configuration... 9 Lookup column types... 9 Adding Sparqube Lookup Classic to SharePoint

More information

How To Uninstall Sharepoint Foundation 2010 List As Template Gallery

How To Uninstall Sharepoint Foundation 2010 List As Template Gallery How To Uninstall Sharepoint Foundation 2010 List As Template Gallery SharePoint Foundation 2010 deprecated search features The Document Workspace site template was removed from SharePoint 2013 to simplify

More information

Vizit 6 Installation Guide

Vizit 6 Installation Guide Vizit 6 Installation Guide Contents Running the Solution Installer... 3 Installation Requirements... 3 The Solution Installer... 3 Activating your License... 7 Online Activation... 7 Offline Activation...

More information

SharePoint 2013 End User

SharePoint 2013 End User SharePoint 2013 End User Course 55031A; 3 Days, Instructor-led Course Description This SharePoint 2013 End User class is for end users working in a SharePoint 2013 environment. The course teaches SharePoint

More information

Siteforce Pilot: Best Practices

Siteforce Pilot: Best Practices Siteforce Pilot: Best Practices Getting Started with Siteforce Setup your users as Publishers and Contributors. Siteforce has two distinct types of users First, is your Web Publishers. These are the front

More information

SharePoint 2010 Content Types

SharePoint 2010 Content Types SharePoint 2010 Content Types A content type essentially defines the attributes of a list item, a document, or a folder. SharePoint 2010 has several built in content types and site columns that may meet

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPOINT 2013 END USER

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited SHAREPOINT 2013 END USER SHAREPOINT 2013 END USER SharePoint 2013 End User (SHP2013.1 version 1.2.1) Copyright Information Copyright 2014 Webucator. All rights reserved. The Authors Bruce Gordon Bruce Gordon has been a Microsoft

More information

USER GUIDE MADCAP FLARE SharePoint

USER GUIDE MADCAP FLARE SharePoint USER GUIDE MADCAP FLARE 2018 SharePoint Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

JSN Sun Framework User's Guide

JSN Sun Framework User's Guide JSN Sun Framework User's Guide Getting Started Layout Overview & Key concepts To start with layout configuration, Go to Extension Template JSN_template_default The first tab you see will be the Layout

More information

PointFire Multilingual User Interface for on-premises SharePoint PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide

PointFire Multilingual User Interface for on-premises SharePoint PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide PointFire 2016 Multilingual User Interface for on-premises SharePoint 2016 PointFire 2013 v1.0 to 2016 v1.0 Upgrade Guide Version: 1.0 Build Date: October 28, 2016 Prepared by: Address: Tel: Email: Web:

More information

Adding the Telerik ASP.NET 2.0 RadMenu Control to MOSS 2007 Publishing Sites

Adding the Telerik ASP.NET 2.0 RadMenu Control to MOSS 2007 Publishing Sites Adding the Telerik ASP.NET 2.0 RadMenu Control to MOSS 2007 Publishing Sites Forward With the release of Windows SharePoint Services (WSS) v3 and Microsoft Office SharePoint Server (MOSS) 2007, Microsoft

More information

Course 55197A: Microsoft SharePoint Server 2016 for the Site Owner/Power User

Course 55197A: Microsoft SharePoint Server 2016 for the Site Owner/Power User Skip to main content Course 55197A: Microsoft SharePoint Server 2016 for the Site Owner/Power User - Course details Course Outline Module 1: The Role of the Site Owner This module provides an introduction

More information

VisualSP 2010 Help Items

VisualSP 2010 Help Items Rehmani Consulting, Inc. VisualSP 2010 Help Items http://www.visualsp.com vsp-support@visualsp.com 630-786-7026 Doc Rev 6.2 for VSP 4.7.0.4 Contents Contents... 2 Introduction... 3 VisualSP 2010 Help Ribbon

More information

Integrating SAP Portal Content into Microsoft SharePoint Portal Server

Integrating SAP Portal Content into Microsoft SharePoint Portal Server Applies to: SAP NetWeaver 04 SPS15, Portal Development Kit 0 for Microsoft.NET Microsoft Visual Studio.NET 2003 2003 Summary Enabling the integration of portal content created with Portal Development Kit

More information

Ace Corporate Documentation

Ace Corporate Documentation Ace Corporate Documentation Introduction Welcome To Ace Corporate! We would like to thank you for donwloading Ace Corporate, Business WordPress theme. It is the lite version of Ace Corporate Pro. Before

More information

COURSE OUTLINE MOC 20488: DEVELOPING MICROSOFT SHAREPOINT SERVER 2013 CORE SOLUTIONS

COURSE OUTLINE MOC 20488: DEVELOPING MICROSOFT SHAREPOINT SERVER 2013 CORE SOLUTIONS COURSE OUTLINE MOC 20488: DEVELOPING MICROSOFT SHAREPOINT SERVER 2013 CORE SOLUTIONS MODULE 1: SHAREPOINT AS A DEVELOPER PLATFORM This module examines different approaches that can be used to develop applications

More information

Colligo Contributor Pro 4.4 SP2. User Guide

Colligo Contributor Pro 4.4 SP2. User Guide 4.4 SP2 User Guide CONTENTS Introduction... 3 Benefits... 3 System Requirements... 3 Software Requirements... 3 Client Software Requirements... 3 Server Software Requirements... 3 Installing Colligo Contributor...

More information

SharePoint 2013 for End Users - Microsoft Official

SharePoint 2013 for End Users - Microsoft Official Page 1 of 10 s Overview This SharePoint 2013 End User class is for end users working in a SharePoint 2013 environment. The course teaches SharePoint basics such as working with lists and libraries as well

More information

VisualSP 2016 Help Items

VisualSP 2016 Help Items Rehmani Consulting, Inc. VisualSP 2016 Help Items http://www.visualsp.com vsp-support@visualsp.com 630-786-7026 Doc Rev 6.2.1 for VSP 5.2.0.0 Contents Contents... 2 Introduction... 3 VisualSP 2016 Help

More information

SharePoint 2013 Web Sites

SharePoint 2013 Web Sites SharePoint 2013 Web Sites Peter Carson President, Envision IT SharePoint MVP Virtual Technical Specialist, Microsoft Canada peter@envisionit.com http://blog.petercarson.ca www.envisionit.com Twitter @carsonpeter

More information

SharePoint Cascading Lookup Plus Field Type. Administrator Guide

SharePoint Cascading Lookup Plus Field Type. Administrator Guide SharePoint Cascading Lookup Plus Field Type Administrator Guide Copyright 2005-2013 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON

More information

Microsoft Office SharePoint. Reference Guide for Contributors

Microsoft Office SharePoint. Reference Guide for Contributors Microsoft Office SharePoint Reference Guide for Contributors SharePoint: Reference Guide for Contributors Table of Contents INTRODUCTION... 3 FOLLOWING A SITE... 3 NAVIGATION... 4 LISTS AND LIBRARIES...

More information

Installation & User Guide

Installation & User Guide SharePoint List Filter Plus Web Part Installation & User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, Ontario

More information

TSInfo Technologies (OPC) Pvt Ltd

TSInfo Technologies (OPC) Pvt Ltd ABSTRACT Courses for SharePoint online Office 365 and SharePoint 2016 training SharePoint Training Courses Prepared By Bijay Kumar Sahoo (Microsoft MVP) SharePoint Online Office 365 SharePoint 2016 SharePoint

More information

About Customizing a SharePoint Server 2007 Site

About Customizing a SharePoint Server 2007 Site SharePoint How To s / Customizing a Site of About Customizing a SharePoint Server 007 Site Modify the structure and appearance of your SharePoint Server 007 site to best suit the needs of your group. Use

More information

SharePoint User Manual

SharePoint User Manual SharePoint User Manual Developed By The CCAP SharePoint Team Revision: 10/2009 TABLE OF CONTENTS SECTION 1... 5 ABOUT SHAREPOINT... 5 1. WHAT IS MICROSOFT OFFICE SHAREPOINT SERVER (MOSS OR SHAREPOINT)?...

More information

Wiki Installation Guide Guide to installing the BlueBridge Wiki Extensions for Microsoft SharePoint 2013

Wiki Installation Guide Guide to installing the BlueBridge Wiki Extensions for Microsoft SharePoint 2013 Guide to installing the BlueBridge Wiki Extensions for Microsoft SharePoint 2013 Table Of Contents 1. BlueBridge Wiki Extensions Installation Guide... 3 2. Installation... 4 2.1 Preparing the Installation...

More information

Application Lifecycle Management for SharePoint in the Enterprise. February 23, 2012

Application Lifecycle Management for SharePoint in the Enterprise. February 23, 2012 Application Lifecycle Management for SharePoint in the Enterprise February 23, 2012 Agenda Introductions Purpose Visual Studio and Team Foundation Server Provisioning SharePoint Farms Agile with Team Foundation

More information

Creating a Website in Schoolwires

Creating a Website in Schoolwires Creating a Website in Schoolwires Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Navigating to an assigned section... 2 Accessing Site Manager... 2 Section Workspace

More information

BindTuning Installation Instructions, Setup Guide. Tiles Web Part Setup Guide

BindTuning Installation Instructions, Setup Guide. Tiles Web Part Setup Guide BindTuning Installation Instructions, Setup Guide Tiles Web Part Setup Guide This documentation was written by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves,

More information

INTRODUCTION & BASIC STRUCTURE... 2 PAGES... 3 EDITING A PAGE... 3 BLOG ENTRIES (POSTS)... 5 CREATING A BLOG ENTRY (POST)... 6

INTRODUCTION & BASIC STRUCTURE... 2 PAGES... 3 EDITING A PAGE... 3 BLOG ENTRIES (POSTS)... 5 CREATING A BLOG ENTRY (POST)... 6 Contents INTRODUCTION & BASIC STRUCTURE... 2 PAGES... 3 EDITING A PAGE... 3 CREATING A NEW PAGE... 4 PASTING TEXT... 4 EXTERNAL LINKS... 4 LINKING THE PAGE TO A MENU... 5 BLOG ENTRIES (POSTS)... 5 CREATING

More information

SharePoint General Instructions

SharePoint General Instructions SharePoint General Instructions Table of Content What is GC Drive?... 2 Access GC Drive... 2 Navigate GC Drive... 2 View and Edit My Profile... 3 OneDrive for Business... 3 What is OneDrive for Business...

More information

Index. Tony Smith 2016 T. Smith, SharePoint 2016 User's Guide, DOI /

Index. Tony Smith 2016 T. Smith, SharePoint 2016 User's Guide, DOI / Index A Alerts creation frequency, 472 list and library, 474 475 list item and document, 473 474 notifications, 478 page alerts, 475 476 search alerts, 477 items, 472 management adding alerts, 480 481

More information

KWizCom Corporation. Clipboard Manager for SharePoint. User Guide

KWizCom Corporation. Clipboard Manager for SharePoint. User Guide KWizCom Corporation Clipboard Manager for SharePoint User Guide Copyright 2005-2018 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, Ontario

More information

SharePoint List Sync 1.0 User Guide

SharePoint List Sync 1.0 User Guide SharePoint List Sync 1.0 User Guide Copyright Copyright 2008-2017 BoostSolutions Co., Ltd. All rights reserved. All materials contained in this publication are protected by Copyright and no part of this

More information

Creating a Website in Schoolwires Technology Integration Center

Creating a Website in Schoolwires Technology Integration Center Creating a Website in Schoolwires Technology Integration Center Overview and Terminology... 2 Logging into Schoolwires... 2 Changing a password... 2 Accessing Site Manager... 2 Section Workspace Overview...

More information

Creating Effective School and PTA Websites. Sam Farnsworth Utah PTA Technology Specialist

Creating Effective School and PTA Websites. Sam Farnsworth Utah PTA Technology Specialist Creating Effective School and PTA Websites Sam Farnsworth Utah PTA Technology Specialist sam@utahpta.org Creating Effective School and PTA Websites Prerequisites: (as listed in class description) HTML

More information

The Internet has long been one of the favorite mechanisms of expression

The Internet has long been one of the favorite mechanisms of expression Becoming Familiar with SharePoint Designer The Internet has long been one of the favorite mechanisms of expression because of the wide reach, connection, and exposure it offers. It s one of the basic means

More information

leveraging your Microsoft Calendar Browser for SharePoint Administrator Manual

leveraging your Microsoft Calendar Browser for SharePoint Administrator Manual CONTENT Calendar Browser for SharePoint Administrator manual 1 INTRODUCTION... 3 2 REQUIREMENTS... 3 3 CALENDAR BROWSER FEATURES... 4 3.1 BOOK... 4 3.1.1 Order Supplies... 4 3.2 PROJECTS... 5 3.3 DESCRIPTIONS...

More information

VisualSP Help System 2013 Installation Procedure. Rehmani Consulting, Inc.

VisualSP Help System 2013 Installation Procedure. Rehmani Consulting, Inc. Rehmani Consulting, Inc. VisualSP Help System 2013 Installation Procedure http://www.visualsp.com vsp-support@visualsp.com 630-786-7026 Rev 6.2 for VSP 5.2.0.0 Contents Contents... 1 Introduction... 2

More information

WEB CREATOR FILE MANAGER

WEB CREATOR FILE MANAGER WEB CREATOR FILE MANAGER TABLE OF CONTENTS TABLE OF CONTENTS... 2 ADMINISTRATIVE PERMISSIONS... 3 ACCESSING WEBSITE SETTINGS... 3 FILE MANAGER... 3 Accessing File Manager... 3 Views... 4 Actions... 4 FOLDER

More information

LightUp Studio. Evaluation Guide CONTENTS. Introduction Creating Integrated App Launcher Tiles and Help Desk Links to the Training Portal...

LightUp Studio. Evaluation Guide CONTENTS. Introduction Creating Integrated App Launcher Tiles and Help Desk Links to the Training Portal... LightUp Studio Evaluation Guide CONTENTS Introduction... 2 Creating Integrated App Launcher Tiles and Help Desk Links to the Training Portal... 3 Controlling the Visibility of Libraries in the Training

More information

SharePoint Mobile Extensions

SharePoint Mobile Extensions KWizCom Corporation SharePoint Mobile Extensions Admin Guide Copyright 2005-2012 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 50 McIntosh Drive, Unit 109 Markham, Ontario ON L3R

More information

CMS Online Store Quick Start Guide. with Joomla, j2store

CMS Online Store Quick Start Guide. with Joomla, j2store CMS Online Store Quick Start Guide with Joomla, j2store Configuring Joomla P a g e 1 Table of Contents Introduction... 2 Installing Software... 2 Configuring Joomla... 2 Administrator login... 2 Installing

More information

Index A, B. Cascading Style Sheets (CSS), 45 Columns, 325 calculations, 330 choice type, 328

Index A, B. Cascading Style Sheets (CSS), 45 Columns, 325 calculations, 330 choice type, 328 Index A, B ASP.NET MVC application, 287 GetProducts() Private Method, 307 LeadInfo objects, 306 Office 365 APIs action methods, 308, 311 authentication process, 311 client library, 300 Custom Classes,

More information

MarkLogic Server. Connector for SharePoint Administrator s Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Connector for SharePoint Administrator s Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved. Connector for SharePoint Administrator s Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-1, May, 2017 Copyright 2017 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Connector

More information

Search Application User Guide

Search Application User Guide SiteExecutive Version 2013 EP1 Search Application User Guide Revised January 2014 Contact: Systems Alliance, Inc. Executive Plaza III 11350 McCormick Road, Suite 1203 Hunt Valley, MD 21031 Phone: 410.584.0595

More information

MS SharePoint Tip Sheet

MS SharePoint Tip Sheet MS SharePoint Tip Sheet FOR USERS: What is SharePoint? SharePoint Online is a collection of online tools that makes it easy to store, share and manage your team s documents. Your SharePoint Online Team

More information

Deployment guide for Duet Enterprise for Microsoft SharePoint and SAP Server 2.0

Deployment guide for Duet Enterprise for Microsoft SharePoint and SAP Server 2.0 Deployment guide for Duet Enterprise for Microsoft SharePoint and SAP Server 2.0 Microsoft Corporation Published: October 2012 Author: Microsoft Office System and Servers Team (itspdocs@microsoft.com)

More information

Workflow Conductor for SharePoint 2007

Workflow Conductor for SharePoint 2007 Workflow Conductor for SharePoint 2007 Release 1.6 (SA08) Overview System Requirements Installing Workflow Conductor Configuring Workflow Conductor Using Workflow Conductor Studio Managing Workflows Licensing

More information

MacroView ClauseBank Version 8.2

MacroView ClauseBank Version 8.2 MacroView ClauseBank Version 8.2 Effective: April 2016 MacroView Business Technology Pty Limited ACN 081 117 777 ABN 29 081 117 777 Level 12, 171 Clarence Street Sydney NSW 2000 Australia GPO Box 5149

More information

How To Delete Saved List Template In Sharepoint 2010

How To Delete Saved List Template In Sharepoint 2010 How To Delete Saved List Template In Sharepoint 2010 Books: SharePoint 2007 2010 Customization for the Site Owner, SharePoint 2010 You can go with list template option but make sure to test it properly.

More information

SharePoint SITE OWNER TRAINING

SharePoint SITE OWNER TRAINING SharePoint SITE OWNER TRAINING Contents Customizing Your Site... 3 Editing Links...4 Give the site a new look...5 Changing Title, Description, or Logo...6 Remove the Getting Started Icons...6 Adding Apps

More information

Mastering Microsoft SharePoint

Mastering Microsoft SharePoint Mastering Microsoft SharePoint Foundation 2010 Callahan WILEY Wiley Publishing, Inc. Contents Introduction xxi Part l Preparing for Microsoft SharePoint Foundation 2010 1 Chapter 1 SharePoint Foundation

More information

SharePoint Designer Customizing and Branding SharePoint 2010 and Office 365

SharePoint Designer Customizing and Branding SharePoint 2010 and Office 365 SharePoint Designer 2010 - Customizing and Branding SharePoint 2010 and Office 365 55010; 3 Days, Instructor-led Course Description This three-day instructor-led course provides students with the knowledge

More information

Egress Switch Desktop Client

Egress Switch Desktop Client 1 COMMERCIAL IN CONFIDENCE Egress Switch Desktop Client User guide Copyright 2017 Egress Software Technologies Ltd. All rights reserved. 2 COMMERCIAL IN CONFIDENCE Confidentiality Statement This document

More information

PRO: Designing and Developing Microsoft SharePoint 2010 Applications

PRO: Designing and Developing Microsoft SharePoint 2010 Applications PRO: Designing and Developing Microsoft SharePoint 2010 Applications Number: 70-576 Passing Score: 700 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ Exam A QUESTION 1 You are helping

More information

How to Upgrade Your Site to the New User Interface

How to Upgrade Your Site to the New User Interface How to Upgrade Your Site to the New User Interface Site Administrators can preview their existing site in the new user interface. We recommend that you do this first to make sure that all of the elements

More information

DocRead for SharePoint 2013 & Administrator Guide. Version 3.5

DocRead for SharePoint 2013 & Administrator Guide. Version 3.5 DocRead for SharePoint 2013 & 2016 Administrator Guide Version 3.5 Contents 1 Intended Audience 2 2 Prerequisites 2 3 Introduction 2 4 DocRead Web Parts 3 4.1 Permission required to add a Web Part 3 4.2

More information

Rehmani Consulting, Inc. VisualSP 2013 Help Items. SharePoint-Videos.com

Rehmani Consulting, Inc. VisualSP 2013 Help Items. SharePoint-Videos.com Rehmani Consulting, Inc. VisualSP 2013 Help Items SharePoint-Videos.com info@sharepointelearning.com 630-786-7026 Contents Contents... 2 Introduction... 3 VisualSP 2013 Help Ribbon Details... 4 Document

More information

Important notice regarding accounts used for installation and configuration

Important notice regarding accounts used for installation and configuration System Requirements Operating System Nintex Reporting 2008 can be installed on Microsoft Windows Server 2003 or 2008 (32 and 64 bit supported for both OS versions). Browser Client Microsoft Internet Explorer

More information

DocAve 6 Exchange Public Folder Migrator

DocAve 6 Exchange Public Folder Migrator DocAve 6 Exchange Public Folder Migrator User Guide Service Pack 4, Cumulative Update 1 Revision B Issued June 2014 Table of Contents Table of Contents... 2 About Exchange Public Folder Migrator... 5 Complementary

More information

SCHULICH MEDICINE & DENTISTRY Website Updates August 30, Administrative Web Editor Guide v6

SCHULICH MEDICINE & DENTISTRY Website Updates August 30, Administrative Web Editor Guide v6 SCHULICH MEDICINE & DENTISTRY Website Updates August 30, 2012 Administrative Web Editor Guide v6 Table of Contents Chapter 1 Web Anatomy... 1 1.1 What You Need To Know First... 1 1.2 Anatomy of a Home

More information

Kathy Hughes. Microsoft* SharePoinf. Designer A MM g "Msift Mi*p\% 800 East 96th Street, Indianapolis, Indiana USA. v^lk.

Kathy Hughes. Microsoft* SharePoinf. Designer A MM g Msift Mi*p\% 800 East 96th Street, Indianapolis, Indiana USA. v^lk. Kathy Hughes Microsoft* SharePoinf Designer 2010 A MM g "Msift Mi*p\% mms/itg t)i*9 v^lk 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 Part I Welcome to SharePoint

More information

WEBSITE INSTRUCTIONS. Table of Contents

WEBSITE INSTRUCTIONS. Table of Contents WEBSITE INSTRUCTIONS Table of Contents 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

Course Outline. Module 1: SharePoint Overview

Course Outline. Module 1: SharePoint Overview Course Outline Module 1: SharePoint Overview This module provides an introduction to the topics covered in the class, introduces SharePoint terminology and provides an overview of the available versions

More information

Coveo Platform 7.0. Microsoft SharePoint Legacy Connector Guide

Coveo Platform 7.0. Microsoft SharePoint Legacy Connector Guide Coveo Platform 7.0 Microsoft SharePoint Legacy Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds

More information

Search in SharePoint 2013

Search in SharePoint 2013 Search in SharePoint 2013 Peter Carson President, Envision IT SharePoint MVP Virtual Technical Specialist, Microsoft Canada peter@envisionit.com http://blog.petercarson.ca www.envisionit.com Twitter @carsonpeter

More information