SharePoint4us

Explore the Experience in SharePoint 2013

Monday, February 12, 2018

Simply JavaScript Basics.... Why JavaScript so powerful today

Hi friends,

Do you ever came across a situation or question in your mind ....

What is JavaScript?
Why it is so Powerful?
Why it was introduced?

To check out these questions 

Please watch the below video
 JavaScript Basics

If you like this video please subscribe and comment us....

Saturday, March 19, 2016

How to create a Site collection in Office365 SharePoint Online through OOB

Hi Friends,

Thanks for visiting my blog,

In my previous articles i have posted about Office 365 Homepage and its Importance .
Today , i would like to create a site collection through OOB.

Before that we should know what is site collection in SharePoint Online?
A Microsoft SharePoint Online site collection is a tiered set of sites that you can manage individually or as a group. The sites share administration settings, navigation, permissions, and other features. Each site collection contains a single top-level site and any number of subsites below it. You can create a site collection as a permanent addition to a site, or a temporary site that you can delete later. A subsite can inherit permissions and navigation from its parent site, or these elements can be specified and managed separately.



Steps to create a site collection :
  
         1. Sign in to Office 365 as a Global or SharePoint Online admin
         2 .Select the app launcher icon  Office 365 app launcher icon in the upper-left and choose Admin.
         3  choose Admin centers > SharePoint and then choose New > Private Site Collection.

      

    4 .Fill out the new site collection properties:




  • In the Title box, type a name for the site collection.

    • In the Web Site Address drop-down lists, select a domain name and a URL path—either /sites/ or/teams/—and then type a URL name for the site collection.
    • In the Template Selection section, in the Select a language drop-down list, choose a language for the site collection. You can enable the SharePoint multiple language interface on your sites, but the primary language for the site collection will remain the one you select here.
      NOTE: It's important to select the appropriate language for the site collection, because once it's set, it cannot be changed. After creating a site collection, verify the locale and regional settings are accurate. (For example, a site created for Chinese will have its locale set to China.)
    • In the Template Selection section, under Select a template, choose the template that most closely describes the purpose of your site collection. For example, if your site collection will be used for a team collaboration, choose Team Site.
    • In the Time Zone box, select the time zone that’s appropriate for the location of the site collection.
    • In the Administrator box, type the user name of your site collection administrator. You can also use theCheck Names or Browse button to find a user to make site collection administrator.
    • In the Storage Quota box, type the number of megabytes (MB) you want to allocate to this site collection. Do not exceed the available amount that displayed next to the box.
    • In the Server Resource Quota box, type the amount of resources you want to allocate to the site collection. This number is a combination of performance metrics (such as processor time and unhandled exceptions) that pertain to code in sandboxed solutions. When the level exceeds a daily quota, the sandbox is turned off for this site collection.
           
    Click OK.
    The new site collection will appear in the URL list, and the site collection administrator can start to create and manage sites.

    Office 365 Homepage and its Importance


    Hi Friends,

    Thanks for visiting my blog, 
    Today , i would like to post the article about office 365 Home page .
    Once we get a subscription for Office 365 we will be  login into the portal with provided credentials.

    Office 365 Landing Page.


    .










    Microsoft Office tools 












    On Right hand side, if we want to see our details ,Click on Profile Icon.


    To check what can an admin do
    Click on admin icon provided in the left menu.




     To navigate to  SharePoint stuff. Please click on "sites" tiles.















    Hope we got the  basic  understanding of home page of Office365 .

    Hope this is helpful. 

    What is Office 365 and Getting started with it ?



    Hi friends, Thanks for visiting my blog . In this post i would like to post about Office 365 and its importance.so lets get started...

    What is Office 365  and Getting started with it ?


    SharePoint Online is a cloud-based service that helps organizations share and collaborate with colleagues, partners, and customers. With SharePoint Online, you can access internal sites, documents, and other information from anywhere—at the office, at home, or from a mobile device.

    Microsoft Office 365 now includes Office 2016 and gives you the full Microsoft Office experience. With access to the latest Office applications as well as other cloud-based productivity services, whether you need Office for home, school, or business, there is an Office 365 plan to meet your needs.

    Our Office 365 subscription plans include Office 365 Home, Office 365 Personal, Office 365 University and Office 365 for Mac. With each plan, you can install the 2016 versions of Word, Excel, PowerPoint, Outlook, and OneNote (Access, and Publisher are also included for PC users). When a new version of Microsoft Office is released, you’ll get instant access to it so your applications are always up-to-date -- and because Office 365 is optimized across your devices it's easy to get anywhere access to your stuff on your laptop, phone, tablet and more.

    Along with the latest software, you'll also get 1TB of OneDrive cloud storage, which lets you keep documents in one place, and access them anywhere on any device -- making it easier than ever to create, edit, and share your documents on the go. In addition, Office 365 subscribers will get 60 minutes of Skype calling per month so you can stay in touch with friends and colleagues around the globe. Best of all, you can get tech support from the Microsoft Answer Desk experts, by phone or chat—at no extra charge.

    Office 365 Home lets you install Office on up to 5 PCs or Macs, as well as 5 Windows, Android, or iPad tablets—an ideal solution for homes with more than one user. See the latest Microsoft Office 365 subscriptions -- and do more everywhere.

    Getting Started with Office 365 

    Please find the below link which will guide you step by step for creating Office 35developer account 
    https://msdn.microsoft.com/en-us/office/office365/howto/setup-development-environment


    Good luck  and start practicing  :-)

    anywhere o
    n your favorite devices.Office 365 Home is a subscription built to help you and your household get things d

    one from nearly anywhere on your favorite devices.

    Tuesday, November 17, 2015

    How to Enable SharePoint Designer quickly in SharePoint 2013


    Hi friends,

    In this post we can explore how to enable SharePoint Designer for a site collection.

    SharePoint Designer

    SharePoint Designer can be locked due to multiple reasons. But, SharePoint Designer is required to customize pages, create custom workflows & lot of other quick tasks.

    If you are the Site Collection Administrator, you can enable SharePoint Designer as following.

    Open Site Settings Gear > Site Contents menu item.


    Why do we use Appsettings in Web.Config file ?


    Hi Friends,

    ASP.NET provides a configuration system we can use to keep our applications flexible at runtime. In this article we will examine some tips and best practices for using the configuration system for the best results.

    The <appSettings> element of a web.config file is a place to store connection strings, server names, file paths, and other miscellaneous settings needed by an application to perform work. The items inside appSettings are items that need to be configurable depending upon the environment, for instance, any database connection strings will change as you move your application from a testing and staging server into production.

    As an example, let’s examine this minimal web.config with an appSetting entry to hold our connection string:



    Some applications will duplicate these lines of code in many places. If we think about how the above code will evolve over time, we might see a handful of weaknesses. First, we have a hard coded string in place to fetch connection information from the web.config. Hard coded strings can be easy to mistype and difficult to track down if the key ever changes. Secondly, the code will tie us forever to the appSettings section of the web.config file. Although web.config is designed for just such a setting, we might find in the future that we need to pull configuration settings from a database, or change a setting from being application-wide to being a per-user configuration item kept in the Session or in a cookie.


    Item Level Permissions in SharePoint 2013


    Hi friends,


    In this article we can explore a common scenario which can be solved using OOB feature of SharePoint 2013.

    Scenario

    You have a list to track expense claims. Multiple employees are using the same list. Following are the challenges:
    1. Employees should see only their items
    2. Employees should not be able to edit other employee’s items

    Solution
    Although using “views” will be the first solution in mind, we can solve this through OOB way using:
    · List Item Level Permissions

    Steps

    Create an Expense list as shown below.









    Save changes & test it out in following way
    1. Create 2 users
    2. Use 2 browsers
    3. Add one expense-item for each user
    4. You can see user-1 can see only his/her item
    5. Same applies to editing as well

    When user 1 logs in: