Articles about European Sharepoint Hosting Service
Posts tagged HostForLife.eu
SharePoint 2013 Hosting – Outlook Web App in SharePoint 2013
Sep 7th
In this tutorial, I will explain you about Outlook Web App in SharePoint 2013. When I had a go at discovering the Outlook Web App web parts in the SharePoint 2013 OOTB web parts, I couldn’t discover the web parts and “Outlook Web App” classification is additionally not accessible. I was supposing it is deprecated or not accessible in SharePoint 2013.
After searching, I found the following solution. And here is the step to include Outlook web parts . First, Go to Web part Gallery. And then On Web part Gallery page, Click Files-> New Document -> New in the ribbon.
On New web part page (NewDWp.aspx), search for Microsoft.SharePoint.Portal.WebControls.OWA, select the web parts identified with the outlook as shown underneath and populate gallery.
under the Miscellaneous Category, you’ll see the web parts related to Outlook.
I hope this tutorial works for you!
SharePoint 2013 Hosting Recommendation
HostForLIFE.eu’s SharePoint 2013 Hosting solution offers a comprehensive feature set that is easy-to-use for new users, yet powerful enough for the most demanding web developer expert. Hosted SharePoint Foundation 2013 is the premiere web-based collaboration and productivity enhancement tool on the market today. With SharePoint 2013 Foundation, you can quickly access and manage documents and information anytime, anywhere though a Web browser in a secure and user friendly way. SharePoint hosting services start at only at €9.99/mo, allowing you to take advantage of the robust feature set for a small business price. HostForLIFE.eu offers a variety of hosted SharePoint Foundation 2013 plans as well as dedicated SharePoint 2013 Foundation options

SharePoint 2013 Hosting – HostForLIFE.eu :: How to Fix Unable to Approve Multiple items in SharePoint 2013?
Apr 15th
Today, I will show you how Unable to approve multiple items in SharePoint 2013. It’s possible to approve multiple items in one pass selecting the things in a view and clicking on the Approve/Reject button within the Items tab.
However, if the user has the acceptable permissions for the item, however not for the list and web site, the user will choose multiple things and click on Approve/Reject, however, if you click on it the Working on it… The dialog won’t disappear. It works if only 1 of the things is chosen, but with multiple items it’s loading forever.
The problems will be reproduced by doing the following:
1. create a new list and enable content approval.
2. Create two items within the list.
3. Disable permission inheritance for each items and assign a user while not approval permissions for the list or web site approval permission for the items.
4. Now sign up with this user and choose both items. The Approve/Reject button is enabled, however, if you click thereon the working on it. The dialog can seem, then again doesn’t go away. The expected Approve/Reject dialog will never show up.
If you are experiencing this problems, please make sure that the user has approval permissions for the list and the site as well. Hope it works for you!
SharePoint 2013 Hosting Recommendation
HostForLIFE.eu’s SharePoint 2013 Hosting solution offers a comprehensive feature set that is easy-to-use for new users, yet powerful enough for the most demanding web developer expert. Hosted SharePoint Foundation 2013 is the premiere web-based collaboration and productivity enhancement tool on the market today. With SharePoint 2013 Foundation, you can quickly access and manage documents and information anytime, anywhere though a Web browser in a secure and user friendly way. SharePoint hosting services start at only at €9.99/mo, allowing you to take advantage of the robust feature set for a small business price. HostForLIFE.eu offers a variety of hosted SharePoint Foundation 2013 plans as well as dedicated SharePoint 2013 Foundation options

SharePoint 2013 Hosting Germany – HostForLIFE.eu :: How to Create Application Catalog Site in Sharepoint 2013
Apr 12th
In this post, I will explain to you the steps to create an app catalog site in SharePoint 2013 using SharePoint 2013 central administration.
An app catalog site contains a special type of document library that is used to upload and store app package files. Along with storing the app package file, this document library also tracks various types of metadata for each app.
We can create an app catalog site by using SharePoint 2013 central administration. You must have farm administrator permissions within an on-premises farm to create an app catalog site. Here are the steps:
Step 1
Open SharePoint 2013 central administration (Start > All Programs > Microsoft SharePoint 2013 Products > SharePoint 2013 Central Administration).
Step 2
Choose Apps from the left hand side and this will open the Apps page.
Step 3
Click on Manage App Catalog from the App Management section in the Apps page.
Step 4
In the Manage App Catalog page, click on Create a new app catalog site and then click on OK. Before that you can also check the Web Application or if you want you can change the web application. Check the fig below:
Step 5
Then this will open the Create App Catalog page, there you can Enter the Title, Description, URL and Site Collection Administrator and then click on “Create”. Check the fig below:
The app catalog site has created successfully!
SharePoint 2013 Hosting Recommendation
HostForLIFE.eu’s SharePoint 2013 Hosting solution offers a comprehensive feature set that is easy-to-use for new users, yet powerful enough for the most demanding web developer expert. Hosted SharePoint Foundation 2013 is the premiere web-based collaboration and productivity enhancement tool on the market today. With SharePoint 2013 Foundation, you can quickly access and manage documents and information anytime, anywhere though a Web browser in a secure and user friendly way. SharePoint hosting services start at only at €9.99/mo, allowing you to take advantage of the robust feature set for a small business price. HostForLIFE.eu offers a variety of hosted SharePoint Foundation 2013 plans as well as dedicated SharePoint 2013 Foundation options.

SharePoint 2013 Hosting UK – HostForLIFE.eu :: How to Acces Sharepoint Data using JavaScript Object Model
Apr 6th
In this post, I will provide details for you to access SharePoint data with JavaScript Object Model. JavaScript Object Model has different syntax together, I will cover common tasks of a SharePoint to get familiarity in accessing the objects. Files that are referred for JavaScript Object Model are:
1 2 3 |
<script type="text/ecmascript" src="/_layouts/SP.Core.js" /> <script type="text/ecmascript" src="/_layouts/SP.Debug.js" /> <script type="text/ecmascript" src="/_layouts/SP.Runtime.Debug.js" /> |
Now, I will show how to Access SharePoint Data using 2 easy ways:
How to Access SharePoint Website
The following code explains how we can access SharePoint Website:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
var siteUrl = '/MySiteCollection/mysite '; function getMyWebSite() { var clientContext = new SP.ClientContext(siteUrl); this.WebsiteObj = clientContext.get_web(); clientContext.load(this.WebsiteObj); clientContext.executeQueryAsync(Function.createDelegate(this, this.onGetSucceeded), Function.createDelegate(this, this.onGetFailed)); } function onGetSucceeded(sender, args) { alert('Site Title: ' + this.WebsiteObj.get_title() + ' Site Decription: ' + this.WebsiteObj.get_description()); } function onGetFailed(sender, args) { alert('Site Request failed. ' + args.get_message() + 'n' + args.get_stackTrace()); |
We have to give only site collection relative url for getting the site object. clientContext.get_web() gets the web object and clientContext.get_site() is the method used to get site collection object.
How to Get SharePoint Data List
The following code explains how we can access SharePoint data list:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
var siteUrl = '/MySiteCollection/mysite'; function getMySiteListData() { var clientContext = new SP.ClientContext(siteUrl); var empList = clientContext.get_web().get_lists().getByTitle('EmpInfo'); var camlQuery = new SP.CamlQuery(); camlQuery.set_viewXml('<View><Query><Where><Geq><FieldRef Name='Department'/>' + '<Value Type='Text'>HR</Value></Geq></Where></Query><RowLimit>10</RowLimit></View>'); this.empListItems = empList.getItems(camlQuery); clientContext.load(empListItems); clientContext.executeQueryAsync(Function.createDelegate(this, this.onListDataSucceeded), Function.createDelegate(this, this.onListDataFailed)); } function onListDataSucceeded(sender, args) { var empInfo = ''; var listItemEnumerator = empListItems.getEnumerator(); while (listItemEnumerator.moveNext()) { var oListItem = listItemEnumerator.get_current(); empInfo += 'nEmp ID: ' + oListItem.get_id() + 'nEmployee Name: ' + oListItem.get_item('Title'); } alert(empInfo.toString()); } function onListDataFailed(sender, args) { alert('List Data fetch failed. ' + args.get_message() + 'n' + args.get_stackTrace()); } |
I hope this post is helpful for you. Good luck and happy coding!
SharePoint 2013 Hosting Recommendation
HostForLIFE.eu’s SharePoint 2013 Hosting solution offers a comprehensive feature set that is easy-to-use for new users, yet powerful enough for the most demanding web developer expert. Hosted SharePoint Foundation 2013 is the premiere web-based collaboration and productivity enhancement tool on the market today. With SharePoint 2013 Foundation, you can quickly access and manage documents and information anytime, anywhere though a Web browser in a secure and user friendly way. SharePoint hosting services start at only at €9.99/mo, allowing you to take advantage of the robust feature set for a small business price. HostForLIFE.eu offers a variety of hosted SharePoint Foundation 2013 plans as well as dedicated SharePoint 2013 Foundation options.
HostForLIFE.eu Proudly Announces Microsoft SQL Server 2014 Hosting
Apr 7th

SharePoint Hosting – HostForLIFE.eu :: Configure SharePoint 2010 Search Service Application
Feb 5th
In this article we will show how to create search service application in SharePoint. From central administration home page click on manage service applications. Click new icon form ribbon bar and click on “search service application”
From the opened screen enter the name for search service application , choose search service account “service account that we used for configure all services” , choose or create a new application pool that will used by search admin web service also do the same step for application Pool for Search Query and Site Settings Web Service then click OK.
Go to SharePoint Central Administration, and then select Application Management.
Then select Manage service applications.
Select search service application and then click manage on the ribbon on the top.
In the left hand bar click content source.
Then click on the down arrow next to the local SharePoint sites and select start full crawl.
Wait until the status becomes Idle.