12

Saturday, March 29, 2008

Web 2.0 Design Patterns

In his book, A Pattern Language, Christopher Alexander prescribes a format for the concise description of the solution to architectural problems. He writes: "Each pattern describes a problem that occurs over and over again in our environment, and then describes the core of the solution to that problem, in such a way that you can use this solution a...

Useful Sharepoint Resources

http://www.sharepoint-tips.com/ http://www.sharepoint-exchange.blogspot.com/http://www.microsoft.com/sharepoint/ ...

Custom Script while submiting a list item in MOSS

Here is another trick to add custom validations or script while submiting a listitem in NewForm.aspx or EditForm.aspx.When you click on OK or Submit in NewForm.aspx or EditForm.aspx, it will execute following script to submit the data into SharePoint DB.if (!PreSaveItem()) return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(<>,...

SharePoint Customization

Here is the procedure to customize Multiline text box and Multi select box in MOSS 2007. To increase the size of Multiline textbox, modify width in .ms-long class. If you want only modify in one page then add a content editor Webpart in the page and place the following code inside. .ms-long {WIDTH: 400px} This will change only in that...