Click on this icon to open the XML page.Tom Van Gaever - Blog
Search:   

BaseType Element 
Monday, September 15, 2008, 20:45 - SharePoint
Posted by Administrator
Every list in a Web site based on SharePoint Team Services from Microsoft inherits its schema from a base type. The BaseType element defines the default schema (for example, the fields) that all lists derived from the base type must contain.


Unique ID for the base type. The following values are possible for built-in base types:

0 = GenericList
1 = DocumentLibrary
2 = BaseType Unused
3 = DiscussionBoard
4 = Survey
5 = Issue
-1 = UnspecifiedBaseType


Complete list:


http://abstractspaces.wordpress.com/200 ... nce-sheet/

add comment ( 2 views )   |  permalink   |  related link   |   ( 3 / 392 )
Field Types 
Friday, September 12, 2008, 10:38 - SharePoint
Posted by Administrator

When creating custom columns or Fields you must specify a type for each field:


<Field ID="{1210BD1F-C010-4eb5-81E9-EA1D97E0E1E5}"
Name="Name"
..
Type="Note"
..
</Field>


All possible types are listed here:
http://msdn.microsoft.com/en-us/library ... dtype.aspx
add comment ( 2 views )   |  permalink   |  related link   |   ( 2.9 / 379 )
Ontbijt sessie: SharePoint voor adviesverleners, een mobiel & offline verhaal 
Friday, September 12, 2008, 09:07
Posted by Administrator


Titel: SharePoint voor adviesverleners, een mobiel & offline verhaal

Datum: 17/10/2008


Advies- (consultants, notarissen, studiebureaus, …) en dienstverlenende bedrijven (IT bedrijven, marketing bureaus, …)
hebben vaak specifieke behoeften op het vlak van (externe) vergaderingen, delen van de informatie met hun klanten, het bouwen en onderhouden van relaties en ten slotte projectmatig werken.
In deze ontbijtsessie gaan we dieper in op de mogelijkheden van een aantal Office 2007 componenten zoals OneNote, InfoPath en SharePoint om een sterk mobiel on- en offline verhaal te plaatsen,specifiek aan deze specialisaties.





add comment ( 1 view )   |  permalink   |   ( 3 / 341 )
Create Custom Actions and Context Menu's 
Thursday, September 11, 2008, 12:07 - SharePoint
Posted by Administrator
André Vala wrote a fantastic blogpost with all the information we need to create Custom Actions and Context Menu's.


see Related Link


thx Mr. Vala
add comment ( 2 views )   |  permalink   |  related link   |   ( 2.9 / 400 )
SharePoint Impersonation 
Thursday, September 11, 2008, 11:23 - SharePoint
Posted by Administrator
SharePoint code runs in the context the user activates certain code. When this user doesn't have sufficient priviliges to update an item, you run in a security exception.

Use RunWithElevatedPrivileges in order to run code as administrator privileges.


SPSecurity.RunWithElevatedPrivileges(delegate()
{
using (SPSite site = new SPSite(this.Site.Url))
{
using (SPWeb web = site.OpenWeb(this.Web.ID))
{
web.AllowUnsafeUpdates = true;

//ACTIONS

web.AllowUnsafeUpdates = false;
}
}
});


</tom>
add comment ( 1 view )   |  permalink   |  related link   |   ( 3 / 391 )

<<First <Back | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | Next> Last>>