2,054 reputation
2614
bio website
location Norway
age 26
visits member for 3 years, 1 month
seen yesterday
stats profile views 353

Nov
21
answered Changing Content Editor Programatically - Client model API?
Nov
19
comment Adding style sheet to feature
Thanks for accepting :) Just a note, I prefer to add scripts and stylesheets in a Module because then I know they will be referenced only once (ish). If you reference directly in your visual Web Part then adding the same Web Part twice to a page might cause havoc (for scripts).
Nov
18
revised Adding style sheet to feature
added 302 characters in body
Nov
18
comment Adding style sheet to feature
Ah, sorry for misunderstanding. You can do it in the module as I mentioned in the answer. Let me update
Nov
18
answered Adding style sheet to feature
Nov
16
revised Quickly set 50 existing sites to all use top link bar of parent?
didn't mean to imply one must deploy to run C# SCOM
Nov
16
answered Quickly set 50 existing sites to all use top link bar of parent?
Nov
16
comment Use of Virtual Machines for Sharepoint Development
You could also consider CloudShare, it's quite nice for development. (Disclamer: third party, not free)
Nov
15
answered Creating Nested Folders via Client Object Model
Nov
15
comment Previous versions of ListItem with CSOM
It looks to me this is not possible, perhaps not even through the REST interface either. I can do it on files, e.g., ctx.get_web().get_lists().getByTitle('Test').getItemById(1).get_files().get_ver‌​sions(), but not on pure SP.ListItem. Although it should be possible through SPServices.
Nov
15
answered Custom Ribbon Button is not appearing
Nov
15
comment Number field on custom content type working inconsistently amongst items
Are you modifying and deploy the content type? That could prove difficult and inconsistencies might be related.
Nov
14
answered Will SharePoint 2013 support multiple values for External Data column?
Nov
14
comment Upload a document in a specific folder
Comment to your statement about reflector: You could try DotPeek by JetBrains <3. I usually just use ReSharper, then I can right click or ctrl+b and get the code decompiled directly.
Nov
14
comment Upgradable Sandboxed solution without DLL
No, I click Upgrade. But I have tried that also, as well as remove/add.
Nov
14
comment Upgradable Sandboxed solution without DLL
Thanks for the answer, but the whole point about the question is to not have a DLL, hence your example code can not exist. And the scenario is basically for upgrade, not deactivate/activate. I must admit I have not tried IgnoreIfAlreadyExists, but I did not think it would help in my case.
Nov
14
revised Upgradable Sandboxed solution without DLL
added 763 characters in body
Nov
14
accepted Lookup between lists with additional data
Nov
13
comment Lookup between lists with additional data
I'm not sure if I did this right, but tried creating a chat, as I'm afraid this question is escalating: chat.stackexchange.com/rooms/6408/…
Nov
13
comment Lookup between lists with additional data
Hehe yes I have heard of them. But to solve my problem I would end up with three lists, and a "joining" list (ToolboxTools) with SPFieldLookups. Quite the mess. So that would even make ´NewForm´ hard to use, as one must add references in ToolboxTools before the item in Toolbox is created. (Three lists is how I would do it, and I have a feeling that solution is not very good).