DCSIMG
WSSv3 - Dor Rotman`s Blog

Browse by Tags

עבודה עם רשימות גדולות ב-SharePoint
לאחרונה עלה אצלי בעבודה כבר כמה פעמים נושא הרשימות הגדולות ב-SharePoint. כמה פריטים מותר לשים ברשימה או בתיקיה ולשמור על ביצועים טובים?   אז הנה כמה המלצות בנושא: לא לעבור את ה-2000 פריטים בתצוגה \ תיקיה לאנדקס עמודות שמבצעים עליהן סינונים תדירים בפיתוח, בשום אופן לא להשתמש ב-foreach, אלא להריץ שאילתת CAML. תמיד שאילתת CAML תהיה מהירה יותר מאנומרציה של אובייקטים. הנה תמונה מתוך Whitepaper שאספר עליו בהמשך. היא מציגה הבדלי מהירות שאילתא בין השיטות השונות. מדובר על רשימה עם 100,000 פריטים, שרוצים...
איסוף מידע ממשתמש בזרימות עבודה
כאשר בונים Workflow מותאם אישית ב-SharePoint Designer, ניתן להשתמש בפעילות “איסוף מידע ממשתמש”. פעילות זו ממומשת ע”י יצירת סוג תוכן מבוסס משימה, אשר טופס העריכה שלו הוא דף ASPX ש-SharePoint Designer מייצר. זהו פתרון פשוט וקל להשגת מידע מהמשתמש. לאחרונה נתקלתי בשני מאמרים מעולים ומועילים בנושא: המאמר הראשון מתאר כיצד להשתמש ב”איסוף מידע ממשתמש” (מאמר ב-Office Online). הוא מאוד מקיף וידידותי. המאמר השני מתאר מעקף למקרה קצה: כאמור, ה-Workflow מתלבש על רשימת המשימות שלנו ומוסיף לה עמודות, שאנחנו לא רוצים...
Changing Content Types for a Sub-Folder in a Document Library
Here's a neat trick Elad Barkan revealed to me: Set up a Document Library so it will have several Content Types assigned to it (using the Advanced Settings). So here's the Document Library's New Menu: Now create a new Folder in it, we'll just call it "Subdirectory" for the sample. Pop up the context menu.. did you notice the Change New Button Order Item? Let's click it! Now we get this cool page, in which we can change the appearance of Content Types in the selected...
Office System 2007 Service Pack 1 is out!
Service Pack 1 יצא הלילה, והנה הקישורים להורדה: Client components: Office 2007 Client SP1 Office SharePoint Designer 2007 SP1 Office 2007 Language Packs SP1 Server components: WSS 3.0 SP1 WSS 3.0 Language Pack SP1 - 32bit , 64bit   MOSS 2007 SP1 MOSS 2007 Server Language Pack SP1 - 32bit , 64bit   חשוב מאוד לשים לב! הדברים אמורים גם לגבי רכיבי ה-Server וגם לגבי רכיבי ה-Client: אם התקנתם Languages Pack, אז אתם צריכים לעדכן את התוכנה בשפה המתאימה לה ואת ה-Language Pack בשפה המתאימה לו. קודם...
Using Javascript to Manipulate a List Form Field Title
Lets say you want to change the text of a field title in a new item form, or in an edit-item form. You might want to do one of the following: Change the field title text Add a remark to the title Add a link Make the title a link Put some javascript The...
SPD ‘Send Email’ Workflow Activity HTML Message Body
Would you like to send email messages with a rich text body from your custom SharePoint Designer workflow? Well, it’s easier than you think… Appearatnly the out of the box activity sends the message body as HTML, but the editor is not rich...
Stock Quote Web Part(s)
Yesterday I was asked to put a web part on an internal MS site, which displays Microsoft’s stock current value and a graph to show its changes. This appeared to be easy - Yahoo offers these kind of web widgets that can be embedded in a site. However...
Updating a list item without changing the Modified field
In WSS 3.0, it is now possible to update a list item (SPListItem) without changing the contents of the Modified or Editor fields. This wonderful method is called SPListItem.SystemUpdate (has two overloads). This solves the annoying problem where people...