231 reputation
112
bio website none
location Montréal, Canada
age 27
visits member for 1 year, 7 months
seen Jun 10 at 18:21
stats profile views 12

Computer Engineer


2d
awarded  Popular Question
Nov
17
awarded  Yearling
Oct
16
answered How to iterage through Message content type in Discussion list
Jul
31
awarded  Excavator
Jul
31
revised SharePoint 2010 Code: Get list items of list in other site collection
reformat code
Jul
31
suggested suggested edit on SharePoint 2010 Code: Get list items of list in other site collection
Jul
5
comment How to find invalid character in SharePoint item value
For special char, I use char.ConvertFromUtf32(160) where 160 is the base10 value of the char.
Jul
5
comment Filter a list by a value in a User's profile
I'm sorry, but what do you mean by replace the functionality of the Current User Filter
Jul
4
comment Open My Site in new window or tab
If you do so, you must wait till the Document is loaded. Event that, check in the source code of the page if your Javascript is still there. SharePoint "cleans" the Content of CEWP when saved. For example, CSS Background are not supported (erased). If you have jQuery, here is the code to wait for the Document to load : $(document).ready(function() { // Code goes here });
Jul
3
awarded  Commentator
Jul
3
comment Open My Site in new window or tab
The javascript should work. Adding target="_blank" is the way to make links open in new tab/window. Can you revisit this solution ? Maybe edit manually the page with F12 and try adding the property yourself.
Mar
6
accepted How can I test a CAML query using mocking?
Mar
6
comment How can I test a CAML query using mocking?
Actually, I wish 2 things : The CAML engine would be exposed offline. And, CAML would be replaced by LINQ-to-SharePoint
Mar
5
comment How can I test a CAML query using mocking?
So basicly, are you telling me there is no way to execute a CAML outside/offline of SharePoint system environment (i.e. in a testing context)?
Mar
5
comment How can I test a CAML query using mocking?
You have a good point here. Yes it should definitely be in the integration tests. But my question here was about the query itself. Ok, let's say I have 2 elements in my list with a language metadata. My query resquest for english items only. With 2 dummy items, one french, one english, does my query works? It's like if I want to test a foreach with an if within. Does it do what it should do ? or did I make a mistake in the type attribute of the CAML query.
Mar
5
asked How can I test a CAML query using mocking?
Feb
27
comment Create a Document Library Item base on a ContentType with JavaScript Object Model (JSOM)
Are you using Javascript here ?
Feb
20
comment How to develop in the following environment
I agree. That's the safest way.
Feb
9
asked Create a Document Library Item base on a ContentType with JavaScript Object Model (JSOM)
Feb
8
accepted CustomAction : Put JavaScript code in a dedicated file