New Post: Is SPDisplayRelatedInfo able display to display the last approved...
SPDisplayRelatedInfo won't do it, but as glaushine mentions, you may be able to accomplish what you need using multiple Web Service operations. M.
View ArticleNew Post: Use GetList to retrieve document library template
Brian: Sorry I hadn't answered your query. Glad you worked it out anyway! M.
View ArticleNew Post: SPServices Issue with SP2007
I'm trying to get the current user and it doesn't appear to be working. Here's my code...curUser = $().SPServices.SPGetCurrentUser({ fieldNames: ['ID','Name','Title','EMail'], debug: false }); Object...
View ArticleNew Post: Use GetList to retrieve document library template
No worries Marc. Better for me I figured it out. You know how it goes… bang your head on it, move on to something else for a spell, come back later for your “aha” moment.
View ArticleNew Post: Is it possible to use a variable to store the value pairs for a...
joshmccarty wrote: Hi fairfieldbusserv, The valuepairs expects an actual JavaScript array, not a string that represents one. If you remove the single quotes around the variable's value (and the stray...
View ArticleNew Post: SPServices Issue with SP2007
What versions of SPServices and jQuery are you using?Paul -- Sent from Mobile
View ArticleNew Post: Is it possible to use a variable to store the value pairs for a...
Sorry, I didn't see the quotes around the definition of the ValuePairs array. Of course the variable needs to be an array of arrays not a string. To understand better: var valuePairs = [];; //add Title...
View ArticleNew Post: SPServices Issue with SP2007
Are you loading spservices after loading jQuery? Regards Michal
View ArticleNew Post: Is it possible to use a variable to store the value pairs for a...
I'll admit that it's a little clunkier than it has to be, but it works. If I were to build it now, it'd be an object rather than an array of arrays. M.
View ArticleNew Post: SPServices Issue with SP2007
Using jQuery 1.8.3 and SPServices 2013.01. I'm loading jQuery and all plugins before I load SPServices.
View ArticleNew Post: SPServices Issue with SP2007
fubak: Have you tried retrieving only one value? I'm wondering if I have some sort of bug in getting multiple values, e.g., https://spservices.codeplex.com/workitem/10175 M.
View ArticleNew Post: SPServices Issue with SP2007
Marc, I was thinking the same thing. It might not be taking nulls into account when building the array. I will retrieve one at a time and let you know. Thanks! Brad
View ArticleCreated Unassigned: First 2 arguments for the of addToPayload method for the...
The first 2 arguments of addToPayload method for the GetTermSets are incorrect.Currently, it is.case "GetTermSets":addToPayload(opt, ["sharedServiceId", "termSetId", "lcid", "clientTimeStamps",...
View ArticleNew Post: SPServices Issue with SP2007
Weird, only ID is returning. Name, Title, and EMail are all blank.
View ArticleNew Post: SPServices Issue with SP2007
Have you checked the userdisp.aspx page for the user? Only values which are present on that page will be returned. M.
View ArticleNew Post: SPServices Issue with SP2007
Name, Work e-mail, Account, SIP Address, First name, Last name, Work phone, and User name are all available.
View ArticleNew Post: SPServices Issue with SP2007
Strange, the admin account works but my personal account doesn't. They appear to have the same fields populated, except the admin account only has First Name populated.
View ArticleNew Post: SPServices Issue with SP2007
I thin k the line where you're getting the error is this one: thisField = (typeof thisField !== "undefined") ? thisField.replace(/(^[\s\xA0]+|[\s\xA0]+$)/g, '') : null; That's line 2345 in 2013.01 (not...
View ArticleNew Post: SPServices Issue with SP2007
I'm getting a "Object doesn't support property or method 'replace'" error on this line... if(aG.fieldNames[0]!=="ID"){aC=(typeof aC!=="undefined")?aC.replace(/(^[\s\xA0]+|[\s\xA0]+$)/g,"") : null}
View ArticleNew Post: SPServices Issue with SP2007
That's the same line as I show above, but in the minified version. If you could put a breakpoint there and figure out what the value of aC is (or thisField in the non-minified version), we might be...
View Article