SharePoint Online: How to Implement Cascading Drop-down in 3 Steps?

Requirement: Implement cascading drop-down list in SharePoint Online list forms. How to Implement Cascading Lookup in SharePoint Online List Forms? Before implementing cascading drop down in SharePoint Online lists, we need lists with data for lookup. In my case, I’ve three custom lists on my SharePoint Online site. Namely: Region, Country, and…

Read more

Open SharePoint List Items in Edit Mode by Default

Requirement: Open SharePoint Task list items in Edit form directly instead of “Display form”. Solution: Go to your SharePoint task list, click on Site settings gear, Choose “Edit page”  Add a script editor and place the below code: Here is the jQuery to launch list items in Edit mode: Now, on clicking…

Read more

How to Remove Hyperlink from Lookup Columns in SharePoint?

Problem:When we add a lookup column to any SharePoint list, it appears with the link to the parent item in SharePoint list views. The end-user often clicks on the lookup link and mistakenly edits the parent lookup item! People get confused about which link to click. So, we wanted to remove hyperlinks…

Read more

How to Hide Column Headers in SharePoint List View Web Parts using CSS, jQuery?

I was looking for some ways to hide SharePoint list view column headers today. Here are my findings: You can use CSS to hide column headers Use JavaScript/jQuery to Hide column headers You can edit the page in SharePoint designer and remove column headers Hide Column Headers of All List View using…

Read more

Arrange Choice Field Radio Buttons Horizontally in SharePoint List Forms

The requirement is to arrange choice fields of Radio buttons horizontally in a SharePoint 2013 custom list form: How to arrange choice field options Horizontally? Step 1: Create a new Custom list form(Say: New.aspx) using SharePoint Designer, edit the page in SharePoint designer, Find and wrap your choice field in <Span> tag…

Read more