|
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 |
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 |
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. |
|
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. |
|
Dec 15 |
comment |
HttpModule does not register I guess my problem was my DLL was not signed properly. And when it was, I was using httpModule section instead of modules Thanks to all ! |
|
Dec 15 |
comment |
HttpModule does not register I'm still unable to register the HttpModule. I'm using IIS7.5 so I tryed <httpModule> and the new vesion <module> and still nothing. Maybe it's just not registering before the default httpModule. |
|
Dec 13 |
comment |
HttpModule does not register So basicly you both telling me that all I'm doing is fine and the HttpModule should register fine ? |
|
Dec 12 |
comment |
How to get SharePoint 2010 site mobile enabled? I've try this, but it still redirect. Stsadm return success. |