Question

We´r running SharePoint 2010 Server and i´m about to try out the projects part in SharePoint.

I would like a list of projects, behind each project there is a list of tasks (Project Tasks List (Gantt)), when the user click a project the task list is displayed.

The problem is that i dont know where to begin...

Thanks!

Best regards

Robert

Was it helpful?

Solution

This will require some customization. There are two "easy" routes you can take, depending on your comfort level

If you know jQuery, you could throw a script on the page to find the links to the project details, and change them to go to the tasks list, filtered by the project.

If you don't, you can use SharePoint designer and convert the web part to a "XSLT Data View" (search for that you'll find a plethora of articles on how). Once converted you can modify the hyperlink to go where you want.

If you're using a single tasks list for all of your projects, you can hyperlink to a tasks list and filter on it by doing something like

http://site/lists/tasks/allitems.aspx?FilterField1=Project&FilterValue1=ProjectName

where allitems.aspx is the view you want to use. You can play with this by going to your view, then filter the view using the column header. Then note the values in the browser's address bar.

HTH

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top