Pretty much everything you need to create a calculated field…
http://msdn.microsoft.com/en-us/library/bb862071.aspx
Pretty much everything you need to create a calculated field…
http://msdn.microsoft.com/en-us/library/bb862071.aspx
This is the best example and method of implementing a cascading drop down/filtered lookup I’ve found that doesn’t make you add JavaScript or some 3rd party tool. I also found a blog that shows you how to modify an infopath form in a document library. I’m not sure if it works, but it’s worth trying before you go down the other paths.
How to add Cascading Drop downs
How to modify the infopath form of a document library
http://www.spindepth.com/2011/04/infopath-sharepoint-document-library.html
If you’re going to code against SharePoint you should take a look at all that is available to you…
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.aspx
Good info to help you decide which to choose…
http://dhireny.blogspot.com/2010/09/site-template-vs-site-definition.html?m=1
This solution allows users work on their own section of a presentation and assemble the final presentation automatically. I couldn’t see using this for a one-off presentation, but if this is a repeatable process at your company it could help.
http://msdn.microsoft.com/en-us/library/ff519529.aspx
Great step-by-step to create a custom service…
http://answers.oreilly.com/topic/1404-how-to-customize-wcf-services-in-sharepoint-2010/
A lot out there –> http://www.codeplex.com/site/search?query=sharepoint%202010&ac=3
Here’s a list detailing a ton of great tools…
http://sharepointhimadrish.com/index.php/2010/04/25/sharepoint-2010-tools/
Problem:
The team that updates the Company Announcements loves the fact that they can expire announcements, but they would like the same concept to apply when content is added. Today announcements are immediately posted to the site using the out-of-the-box announcement list. The team would really like to queue up most of the announcements for the month and have them show up when a specified date occurs.
Solution:
Modify the existing announcement list to allow an “Effective Date” to be entered for each announcement and update the view to show announcements that are on or after the effective date.
Steps:
Open SP Designer and navigate to you Announcement list. Mine is named “Company Announcements”.
Click “Edit List Columns”
Click “Add New Column” then select “Date & Time”
Name your new column. Mines is called “Effective Date”. I also unchecked “Allow Blank Values” option since my view will expect a “Effective Date” to be present.
Click “Save” and now navigate to your page that displays your announcement list. My is called announcements.aspx. It’s just a blank web part page that has the summary view of the announcement list displayed on it.
Click “Edit file”
Click “Filter” at the top left
Click “Click here to add a new clause…” and add the ”Effective Date” criteria shown below.
Click “Save” to see your results. I have already added some announcements that have an ”Effective Date” before and after today. I’m seeing the announcements I expect to see.
Go ahead and view your web page from the browser and that’s it.