Increase SharePoint 2013 Lookup Column Width

Requirement: Increase SharePoint 2013 multi-lookup field width Solution: Use CSS styles to set lookup field width in SharePoint! Here is how: Navigate to: https://your-sharepoint-site.com/Lists/Your-List/editform.aspx Click on “Site Settings” gear >> Edit Page Click on the “Add Web Part” link and then choose “Script Editor “from the “Media and Content” group Click on…

Read more

SharePoint Online: Delete a Site Collection using PowerShell

Requirement: Delete a SharePoint Online Site Collection using PowerShell. How to Delete a Site Collection in SharePoint Online? SharePoint Online site collection is a collection of one or more sites that are grouped under a common URL and typically share a common navigation, branding, features, security, etc. When it comes to managing…

Read more

How to Connect to SharePoint Online from PowerShell?

I know I said it several times, but I’ll say it again: I’m a big fan of PowerShell! PowerShell is an administrative task automation and configuration management framework from Microsoft that allows you to administer Microsoft products, including SharePoint Online. PowerShell makes repetitive tasks easier and makes our life smarter, and it…

Read more

SharePoint Online: Activate a Feature using PowerShell

Requirement: Activate a feature in SharePoint Online site collection using PowerShell. Solution: In SharePoint On-Premises, We use the Enable-SPFeature cmdlet to activate/enable features. In SharePoint Online, there is no such cmdlet available through PowerShell to activate the feature. But we can utilize the Client-Side Object Model (CSOM) to activate features in SharePoint…

Read more

Fix Quick Edit Disabled in SharePoint Issue

Datasheet view is now called “Quick Edit” in SharePoint 2013. It provides a nice flexible Excel-like editor to bulk edit, copy-paste list items, and metadata. Like a spreadsheet, you can create, change and delete items in the grid. As with the new name, quick edit brought many new features in SharePoint 2013,…

Read more

SharePoint Online: Create a List using PowerShell

Requirement: Create a List in SharePoint Online using PowerShell. How to Create a List in SharePoint Online? SharePoint Online Lists are used to store structured data like you store data in an Excel spreadsheet or a database table. E.g., You can create lists to track tasks, contacts, projects, and products. When you…

Read more

Edit Links Missing in SharePoint Navigation?

Edit Links is a new feature introduced in SharePoint 2013 to provide a quick way to Add, Edit, Remove and Re-arrange links in quick launch and top navigation.  Edit Links Missing in SharePoint 2016 Navigation? So, You are not getting Edit links in SharePoint 2013 navigation? Well, check the below factors: Edit…

Read more

How to Find the Feature ID in SharePoint?

Requirement: Get the Feature ID of a particular feature to activate it programmatically. Solution: In SharePoint, features are used to add functionality and customization to a site. Each feature is assigned a unique identifier called a Feature ID. The Feature ID is used to activate, deactivate, and configure features in SharePoint. However,…

Read more

SharePoint Online: Add New List Item using PowerShell

Requirement: When working with SharePoint Online, I had a requirement to add new list items to a list from the PowerShell script. This blog post will cover how to create a list item in SharePoint Online using PowerShell, with some examples. How to add an item to a List in SharePoint Online?…

Read more

How to Hide Quick Launch Bar in SharePoint 2013 / 2016?

How to hide SharePoint quick launch?Want to remove the quick launch from SharePoint 2013 or SharePoint 2016 sites, perhaps to see the home page in full width? How to hide a quick launch in SharePoint 2013? Well, to enable or disable Quick Launch through the SharePoint 2013 user interface, Go to: Site…

Read more