Show all fields with JQuery

My current project uses jquery extensively to manipulate the data in our SharePoint forms. Fields are hidden and renamed at will. We recently encountered an error that was traced back to a field being changed to nullable in the column definition.

The key to finding the problem was 'unhiding' all the fields that our extensive jquery had changed. A very effective little piece of code:

$('*').css('display','');

Comments

Popular posts from this blog

SharePoint 2013: Error updating managed account credentials

How can I call a JIRA api through Powershell?