Most Popular

1500 questions
20
votes
3 answers

CssRegistration with $SPUrl doesn't work

I'm using SharePoint 2013 and I have created master page file (as .html) and converted it to .master file. As I have read, I should only modify html file, because all changes will be also registered in .master file and this doesn't work in opposite…
Marcin Bigoraj
  • 343
  • 1
  • 3
  • 6
20
votes
1 answer

Memory leak in Microsoft.Sharepoint.Taxonomy.TaxonomyItemEventReceivers?

I've been trying to locate some memory leaks we've noticed in our ULS (EventID: nask, An SPRequest object was not disposed ... etc). On my dev environment, and at least 2 other cleaner installs, the taxonomy receivers seem to be the source of these…
Nicholas Mulder
  • 301
  • 1
  • 4
20
votes
6 answers

Get Items Under Folder CAML

I am trying to retrieve all items that are under a certain folder, in a document library. This is what i have so far: List DocumentsList = clientContext.Web.Lists.GetByTitle(list); CamlQuery camlQuery = new CamlQuery(); camlQuery = new…
Sebastien Stettler
  • 1,270
  • 1
  • 13
  • 28
20
votes
3 answers

How to get all items in a View using Client Object Model (JavaScript)

To get all the items in a List you use // Setup context & load web context = new SP.ClientContext.get_current(); web = context.get_web(); context.load(web); // Load task list this.List =…
Ryan
  • 5,835
  • 8
  • 28
  • 54
20
votes
3 answers

How to access my "Outgoing E-Mail Settings" from code?

Is it possible for me to pull the values that are in: Central Admin -> System Settings -> Configure outgoing e-mail settings from my code behind using the object model?
Abe Miessler
  • 6,755
  • 23
  • 75
  • 121
20
votes
5 answers

WebServices or Client object model?

I am writing a Silverlight control which will display the data from SharePoint list for use in SharePoint 2010 site. I am considering wheather to use Client Object Model or SharePoint web services to achieve this task ? Are there any criteria or…
Madhur Ahuja
  • 674
  • 5
  • 15
20
votes
2 answers

Can't start debugging after install VS11

After I installed VS11 Dev Preview, VS2010 cannot start debugging the Sharepoint 2010 server (developer install on Windows 7). I get a nice error dialog stating: Unable to start debugging on the web server. The debugger is not properly installed.…
leppie
  • 331
  • 2
  • 8
20
votes
4 answers

SPFx: loading jQuery (and other libraries)

The SharePoint Framework weather example loads jQuery inside the WebPart render method: https://www.youtube.com/watch?v=HGC9gsDRy1E#t=10m30 Questions: Is this the preferred development pattern? Will it reload jQuery multiple times when used in…
Danny '365CSI' Engelman
  • 21,176
  • 7
  • 35
  • 79
20
votes
19 answers

Infopath change Publish Location

Working with Infopath 2010 here and SP 2010. I've created my form and published it while in DEV. Now, I want to publish it to the Prod Location. Here's the issue and to me, quite strange. I can't republish to another location. Normally, I just…
Fox
  • 2,676
  • 1
  • 18
  • 30
20
votes
1 answer

Rest API - $filter multiple values

Assuming there is a list of Students each with a zip-code, how can I get records for multiple (but not all) zip-codes. When using $filter how do specify multiple values? Here's what I have so…
pzirkind
  • 345
  • 2
  • 3
  • 6
20
votes
8 answers

Display SharePoint Online in an iframe on different domain

We would like to display pages from SharePoint Online in an iframe of a Page hosted somewhere else, e.g. in an Azure Web App: When we do this (in Chrome for example), we get the following…
PzYon
  • 411
  • 1
  • 4
  • 11
20
votes
4 answers

Inconsistent user names in SharePoint

Using SharePoint 2010, some user names in the people pickes and User Information List are shown by John Smith. Others are companyDomain\jsmith. We would like to correct this for consistency. I have checked our active directory records, and there is…
caschw
  • 455
  • 4
  • 15
19
votes
4 answers

change the default tile size in Sharepoint 2013

Hello, I create an app using the Promoted Links in Sharepoint 2013. I chose to do this because the feature has the awesome hover effect and is easy to customize the image. The issue is that I have been trying to figure out how to change the tile…
Question-Everything
  • 589
  • 2
  • 8
  • 17
19
votes
11 answers

Finding the internal name and display name for a list column

I am using SharePoint Server 2007 Enterprise with Windows Server 2008 Enterprise, and I am using publishing portal template. I heard for SharePoint list/list column, it has an internal name which could be used for programming (as identifier for…
George2
  • 1,343
  • 7
  • 30
  • 46
19
votes
1 answer

Is Calling base.ItemUpdating(properties); necessary?

In an event receiver, is it necessary to call base.ItemAdding(properties);, base.ItemUpdating(properties);, etc. at the beginning of your event handler? I've seen people arguing that it isn't necessary because it doesn't do anything, but it seems to…
RJ Cuthbertson
  • 8,342
  • 6
  • 38
  • 76