R – Sharepoint custom list, dynamic field

mosssharepointsharepoint-2007

Hey guys, just wondering if their is a simple way to create an Item in a custom list but i need that item to be dynamic. The user can click add more to get another field that would hold the same type of data an unlimited amount of time.

If i could even just add an excel spreadsheet type of field that would work also. But excel wouldnt need to be a requirement on the users machine.

I thought i had read somewhere you could do this using info path but i cant seem to find anything relating to it on google.

Best Answer

The InfoPath feature is called a "repeating section". There is information on how to set that up in Office Online.

If you wanted to achieve this entirely in SharePoint, the problem is that there can only be a fixed number of fields in a list. So you could create as many that would ever be used and just display all of those. Or to make it much nicer for the user incorporate jQuery to hide all of the fields except the first one and provide a button for them to click that unhides the next one.

There is good information on how to access list form fields using jQuery in the question How can I set the default value in a SharePoint list field, based on the value in another field?

Related Topic