Programming

3 posts

Show or hide fields in list forms in SharePoint 2013, SharePoint Online (Office 365)

Using Visual Studio at provision time, you can set the properties in the list’s Schema.xml: <Field Name=”SomeField” ShowInDisplayForm=”FALSE” ShowInNewForm=”FALSE” ShowInEditForm=”FALSE” ShowInViewForm=”FALSE”></Field> Though, if you later need to update these properties for an already deployed field, you can do this using JavaScript (JSOM). Just navigate with your browser to any list in the site, open the console and run: […]

How To edit the Group Quick Launch in SharePoint 2013 (and SharePoint Online)

If you’re customizing your SharePoint groups from C# code, like creating role definitions, sharepoint groups and role assignments, you’re likely that you need to put those new groups in the left navigation area, also called Group Quick Launch so that users can add users / AD groups to them when going to Site Settings -> […]