| bio | website | blog.sebastienlevert.com |
|---|---|---|
| location | Montreal, Canada | |
| age | 26 | |
| visits | member for | 2 years, 8 months |
| seen | Apr 7 '11 at 5:57 | |
| stats | profile views | 120 |
SharePoint developer since 2007. Student and SharePoint consultant.
|
Apr 4 |
comment |
LINQ to SharePoint and localized list names I didn't... I have not found any solution to that problem. I am instead using the really Linq To SharePoint provider CamlexNET. Check it out there --> camlex.codeplex.com |
|
Mar 19 |
comment |
Changing project from GAC to Bin deployment Should do the trick ! |
|
Mar 15 |
comment |
SharePoint 2010 Web Part built in Visual Studio 2010 & Deployed to /bin Is it a Sandbox solution ? You can't use Visual webpart from within them... |
|
Mar 15 |
comment |
How do I show a view of documents for the current user's department? Then you could add a metadata column representing the departments, then create some views filtered by department. That could do it! |
|
Mar 14 |
comment |
How do I show a view of documents for the current user's department? Do you want a security solution, or a display solution? I mean, do you want a solution that secures the items scoping them to a certain group, of only showing them to the good group, without concern about the item security ? |
|
Mar 14 |
comment |
Developing ASP.Net User Control to be imported to SharePoint MOSS 2007 You can develop completly from VS2010 for SP2007. For WSPBuilder, I don't know if they built a version for VS2010... I am using the MSBuild-based solution "STSDEV" and I can do all my development (2007 AND 2010) from my Visual Studio 2010 environment! |
|
Mar 14 |
comment |
How do I show a view of documents for the current user's department? You probably need code to fill those requirements... The simplest would be the third option, but you won't have any real security, only filtered view... You can look at some third party solution... I already tested that one (titus.com/software/sharepoint/metadata.php) and it is a good solution, you can establish some logic to establish real "By Item" security depending on some Metadata. Maybe it is more what you could get the most without code. |
|
Mar 7 |
comment |
CAML Query Maximum Size Why do you need those 780 OR statements? Can you paste part of your CAML Query? |
|
Feb 17 |
comment |
SPWeb.Webs, foreach and var Are you building it in .NET 2 or greater? |
|
Jan 6 |
comment |
Cross site lookup in SharePoint 2007 You should probably package your whole solution within your solution with STSDEV or WSPBuilder and have it all wrapped up. But it is exactly what you need to do, by adding the columns from your feature receiver. |
|
Dec 22 |
comment |
ListAdded Event Receiver not Firing for List Instances I never had any difficulties at that level... My code is always fired when I activate a ListInstance... Even from a feature activation from code behind! |
|
Dec 21 |
comment |
You do not have permission to do this operation You are editing from a client machine, of directly from the server ? |
|
Dec 18 |
comment |
link documents in sharepoint 2010 You tagged the client object model... Is it that object model of the full object model ? |
|
Dec 18 |
comment |
Error accessing Custom WebService It is not necessary, but highly recommended, I would say... Because those pages are quite special, you could have that kind of problems... Is there a specific reason to it that way ? |
|
Dec 10 |
comment |
Problem with SPFieldLookupValue in SharePoint 2010 Where is this code fired ? If it is in an Event Receiver, depending if sync or async, you won't have the good values in your property bag. |
|
Dec 4 |
comment |
Populate Lookup Value based on URL I don't have specific code, right now, 'cause I never had to do it, but you could check on jQuery for the Javascript part, and check the following link to get to have a custom NewForm.aspx risetime.com/blog/archive/2009/06/03/… |
|
Nov 24 |
comment |
How to localize Sharepoint Groups names You create the group, set the description, and change the language page, and then "edit" the description. The two values entered will be kept as a value per language |
|
Nov 23 |
comment |
Setting cookies Does your Javascript code is executed on the "onLoad" event of the page ? It needs to be if you want it to be fired. |
|
Nov 23 |
comment |
Customize Content Types In a List Exactly! You could create your own NewForm.aspx and then include this code into that new page. |
|
Nov 22 |
comment |
How do I change the authentication of an existing ASP.NET application to integrate it with SharePoint? SharePoint 2010 or SharePoint 2007 ? This will make a lot of difference on the code, on the authentication and on the functionnalities... |