New Post: Obtaining the value of a Look Up column
Marc, My apologies, great suggestion. Misunderstood from my end. You're right, getting the ID is absolutely key, and actually using just the ID alone works perfectly well. A content query web part...
View ArticleNew Post: SPServices not loading,but alerts are showing
Ann_v: If the alert "Yes,Its Admin" is firing, then SPServices is working. Is that what you mean by "I tried an alert insdie SPService and i successfully got the alert"? M.
View ArticleNew Post: SPServices not loading,but alerts are showing
You only need to post your question in one thread. I see all of the posts! M.
View ArticleNew Post: SPServices not loading,but alerts are showing
oops..sorry for posting the same question in 2 threads...Thanks for the reply.. Inside SPServices.js i pasted an alert,that is working .But when i try in my page "alert("SPServices loaded? " +...
View ArticleNew Post: SPServices not loading,but alerts are showing
Well, your alert is always going to say "NO!!!" the way you have it. This works:alert("SPServices loaded? " + ($().SPServices == undefined ? "NO!!!" : "YES.")); What version of SharePoint are you using...
View ArticleNew Post: SPServices not loading,but alerts are showing
Yes U r right ... I got the alert "SPServices loaded? YES." But not the second alert.. I am using sharepoint 2010,my code is in a js file and am calling it from a master page .Actually i want to check...
View ArticleNew Post: SPServices not loading,but alerts are showing
Well, check that the user is in fact in that group and that the group is in the returned results. Given that SPServices is loaded and working, it'll be some debugging on your side at this point. M.
View ArticleNew Post: SPServices not loading,but alerts are showing
the same code is working with some other subsites ,but only for one particular subsite its not working . And all the subsites are pointed to the same js files in the parent site. May be some other...
View ArticleCreated Unassigned: userToJsonObject userId broken in 2013.0.1 [10144]
There's a typo in this function that prevents returning of a valid userId.thisUser.**Id** should be thisUser.**id** instead.```function userToJsonObject(s) { if (s.length === 0) { return null;} else {...
View ArticleEdited Issue: userToJsonObject userId broken in 2013.0.1 [10144]
There's a typo in this function that prevents returning of a valid userId.thisUser.**Id** should be thisUser.**id** instead.```function userToJsonObject(s) { if (s.length === 0) { return null;} else {...
View ArticleCommented Issue: userToJsonObject userId broken in 2013.0.1 [10144]
There's a typo in this function that prevents returning of a valid userId.thisUser.**Id** should be thisUser.**id** instead.```function userToJsonObject(s) { if (s.length === 0) { return null;} else {...
View ArticleUpdated Release: SPServices 2013.02
This release is in an pre-release state. Please only download it if you know what you are getting and are willing to test it. In any case, it's a bad idea to use any release with the word ALPHA or BETA...
View ArticleNew Post: GetListItems - Recurring Events - DateRangesOverlap
Not to necro this, but I wanted to add something to the thread as it may help others. I too was having issues with recurring events not display correctly on my FullCalendar until I changed '<Value...
View ArticleNew Comment on "$().SPServices.SPDisplayRelatedInfo"
Works like a wonder!!! I am having a problem with the related info being displayed in the Drop Off Library (Records Center). Is the code expected to work where there are multiple Content Types to...
View ArticleNew Post: Loading Modal/Screen for SPServices Processing
Mark, Nothing out of the ordinary I don't think... just a bunch of calls to SPServices. I am using getScript because I am calling SPServices from a separate JS file (test.js) which is referenced by the...
View ArticleNew Post: SPServices for .aspx page other than NewForm.aspx and EditForm.aspx
Hi Marc, I have some questions about your project of how to make cascading dropdowns for NewForm.aspx and EditForm.aspx page on SharePoint. I have tested and the solution works great for the site....
View ArticleCreated Unassigned: WebUrlFromPageUrl fires twice when not called with webURL...
According to the documentation the only required param is pageURL, but if called in that way the system makes two calls.```javascript$().SPServices({ operation: "WebUrlFromPageUrl", pageURL:...
View ArticleCreated Unassigned: ResolvePrincipals with addToUserInfoList=true requires...
The following fails at moment.```javascript$().SPServices({ operation: "ResolvePrincipals", principalKeys: '<string>SPIRIT\\testuser99</string>', addToUserInfoList: true})```with a...
View ArticleNew Post: Global complex to simple lookups fields from the master page.
Hi Marc,This may have a place in your library. The first section is the library portion and the last part demonstrates the callback that can be used when a value is selected from the dropdown. The rest...
View Article