Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Customise a SharePoint List Form into Sections/Tabs/Pages

I have a SharePoint solution which uses a list with around 20 different pieces of data. I would like to be able to break these up into sections/pages/tabs so that the user experience in populating and editing these is not so poor.

I know how to use SPD (SharePoint Designer) to customize list forms and was wondering if anyone knew of a technique for achieving this.

I have looked at using a MultiView control but this appears to screw up the rendering within the form.

Ideas welcome.

like image 572
Charlie Avatar asked Feb 28 '23 21:02

Charlie


2 Answers

You can create some Javascript to hide fields until necessary, but it is going to be a hard slog to get it right. It could be easier to create a custom .NET form for the data and use the object model to store the list data.

like image 190
Nat Avatar answered Mar 10 '23 11:03

Nat


Try to use Forms Designer tool: http://spform.com. It allows you to create rich dynamic forms with tabs based on jquery-ui tabs.

like image 45
Dmitry Kozlov Avatar answered Mar 10 '23 12:03

Dmitry Kozlov