Tag Info

Hot answers tagged

1

Fast Search (2010) will index javascript sites. SharePoint Search (2013) will not index javascript. References: http://social.msdn.microsoft.com/Forums/de-DE/sharepointsearch/thread/b2456e71-9308-43f8-8351-b013b5070cc5 http://blogs.technet.com/b/vedant/archive/2010/08/24/fast-search-server-2010-for-sharepoint-specific-indexing-connectors.aspx


1

I don't have a virtual machine with IE 8 at my disposal right now, but according to http://caniuse.com/css3-colors IE 8 does not support RGBa color values. Looks like you have to resort to a HEX value for IE 8 and below. UPDATE ** To get something going in IE 8, you could use the MSFT opacity filter like this: body { /* ...


1

You have the option in the Page layouts and site templates page in New Page Default Settingssection. Select the page Layout that you need to set as default in Select the default page layout For new subsites, Write a feature stapler which sets your desired page layout on default.aspx, while the web provisioning process. or Create a custom web ...


1

You can add it manually private const string _ascxPath = "~/_CONTROLTEMPLATES/yourproject/yourcontrol.ascx"; If you cannot find "_CONTROLTEMPLATES" folder in your project,You should add mapped folders to your project


1

Use simple server object model to achieve this you need to iterate each SPListitem and inside that call a function which will take item id as parameter and then query doc library to get desired items based on that foreach(SPListitem item in list.items) { lst.add( GetAllDocs(item.ID)); } public list<Documents> GetAllDocs(int id) { ...


1

Since Visual Studio 2012 was released before the updated version of SharePoint there (were) some post install updates that had to be run. I believe at this point, everything is bundled into VS 2012 Update 2 which was released recently. http://www.microsoft.com/en-us/download/details.aspx?id=38188


1

Seems like OK specs. The more service applications you are planning to use, the more power you will need. I do not think it sounds wise to let the Virtual maschine use all of the RAM, your host needs RAM aswell. Also regarding the CPU, give the VM maximum 6 cores, or configure the VM to not utilize 100% of each core. This also to give the host machine ...


1

Please add your feature manifest to the question. You find it by double clicking your feature and at the top select "Manifest". From your warnings it seems like the feature manifest is corrupt. An easy fix should be to recreate the feature and readd your project items to it. Also there is a warning about using different version of an assembly. Make sure ...


1

Finally worked it out, turns out the Masterpage that SP2013 created from my HTML page did NOT include the required JS files for modal popups to work. I had to edit the HTML file in SPD2013 and add the following code. <!--MS:<SharePoint:ScriptLink ID="ScriptLink2" Name="SP.js" runat="server" OnDemand="false" LoadAfterUI="true" ...


1

This works, but I need to be able to construct the user object from the currently logged on user. Shouldn't be too difficult I hope ! var users = new Array(1); var user = new Object(); user.AutoFillDisplayText = "Ian Chivers"; user.AutoFillKey = "i:0#.f|membership|ian@kwsservices.onmicrosoft.com"; user.AutoFillSubDisplayText = ""; user.AutoFillTitleText = ...


1

It may well be a bug, but for fellow travellers, I found this in TechNet: http://technet.microsoft.com/en-us/library/jj683123.aspx Dealing with spaces in values Search queries use the space character to tokenize query values issued by users. When a query variable is expanded to a value that contains a space, the complete value is enclosed in ...



Only top voted, non community-wiki answers of a minimum length are eligible