| bio | website | hughajwood.wordpress.com |
|---|---|---|
| location | Edinburgh, United Kingdom | |
| age | 32 | |
| visits | member for | 9 months |
| seen | yesterday | |
| stats | profile views | 289 |
From 12 years of development experience I can bring to the table much more than just a developer.
I have in-depth experience of over 9 programming languages, project management and systems analysis with qualifications in each area.
On top of this I have worked on many web projects receiving HTML (Including HTML 5), CSS2 & 3, JavaScript and SEO training.
So anything from a network application built in C++, high performance engines built in an assembly language or website or web interface, I have the experience and the expertise to lend to any company.
|
May 14 |
comment |
use of 14hive resources in XSLT for XLV Sharepoint uses almost the same file format recognising method throughout since early on frontpage portal. This is basically checking the file extension and splitting with periods. Any hive file with periods when SharePoint attempts to recognise the file type could fail because of this. It works fine with libraries because the files are checked by mime type, however say you work with the RPC functions to upload files these fail as they depend on file extensions. |
|
May 14 |
comment |
SharePoint Online CSOM Authentication Code does not working on Sandbox solution You don't need to, you can create a new web app for a basic asp.net site and use that for hosting apps. Really this would be a seperate server ideally. Then you can run your csom from there and have it come in a iframe on the page. The use has total transparency as to what is going on. Going forward this is a step towards the 2013 app model which is replacing sandbox. |
|
May 14 |
answered | SharePoint Online CSOM Authentication Code does not working on Sandbox solution |
|
May 14 |
answered | Installing SharePoint Designer 2013 |
|
May 14 |
comment |
use of 14hive resources in XSLT for XLV You shouldn't use periods in file names, they are for file descriptor separators only. SharePoint doesn't support the use of multiple periods at all. SharePoint, ProFTP, TransferText, Symphony, KVR Audio and servedir all do not support multiple periods in file names. |
|
May 14 |
answered | use of 14hive resources in XSLT for XLV |
|
May 14 |
comment |
Access Denied trying to access SharePoint 2013 REST API, User Profile endpoint Is your app permissions set to read? in your app manifest |
|
May 14 |
answered | profile picture asking for credential each time from SharePoint Client object model |
|
May 10 |
revised |
Rich Text Control on a Layouts Page added 151 characters in body |
|
May 10 |
comment |
Rich Text Control on a Layouts Page I see, yeah just steal the code from a page that uses that then. (I do this to get around EVERY problem that I can't do OOTB easily :P) |
|
May 10 |
comment |
Rich Text Control on a Layouts Page Sorry max, misunderstood, you want to basically grab and steal the content editor web part (Microsoft.SharePoint.WebPartPages.ContentEditorWebPart for this. Pretty easy to do infact someone has already done it for you. zootfroot.blogspot.co.uk/2010/09/… |
|
May 10 |
answered | Rich Text Control on a Layouts Page |
|
May 9 |
comment |
Javascript IIFE and SharePoint Client Object Model Okay the object is delegating to itself awesome.. Okay looks like a script hasn't loaded properly before you run your code. What version of SharePoint is this? Looks like Scripts On Demand could help you out with execution timing. |
|
May 8 |
comment |
Javascript IIFE and SharePoint Client Object Model Okay just before the enumerator using a breakpoint JSON.stringify(itemCollection) to serialise the output in the console window. |
|
May 8 |
comment |
Javascript IIFE and SharePoint Client Object Model In your web.config find the compilation tag and set debug to true, this way you can trace through. Also stick the break point on the Enumerator and then look at items does it loop through the while loop? |
|
May 8 |
comment |
Javascript IIFE and SharePoint Client Object Model I boiled your code down to it's simplest version here jsfiddle.net/hughajwood/ZwJud using an ajax call to simulate the list call. The code does fall into scope but you aren't making a new version of the object for use so that's a consideration if you are using it more than once and could be a possible issue. Apart from that you need to stick a breakpoint on the loadQuery line and check to see if itemCollection is being instantiated there. If it is, stick one on the getEnumerator line and step through the code. |
|
May 8 |
comment |
Javascript IIFE and SharePoint Client Object Model Jason you can add the variable to the watch, the best way would be to stick breakpoints in the code, run it through and find out, with the item in the watch. You can also then run tests on the objects in the console as an immediate window. |
|
May 8 |
comment |
Javascript IIFE and SharePoint Client Object Model There are several reasons why this code on the face of it won't work properly, but there could also be other reasons on top of this which will make working through this code difficult. Your solution is bypassing any broken scope that Jason is facing without fixing the real problem. |
|
May 7 |
answered | How I can install SharePoint server 2013 on windows server 2008 inside a VM |
|
May 7 |
comment |
How can I send users to a maintenance page during site upgrades? It doesn't effect null context calls. Powershell, custom apps etc. |