New Post: Get list of users from Active Directory using SPServices
You could also try something like the following. This is what I use on my site to get users for populating jQuery UI's Autocomplete dropdown $().SPServices({ operation:...
View ArticleNew Post: SPCascade in Custom Form makes dropdown off center
Just wondering if you could post the javascript you're using to call into SPServices. I ran into a similar problem and I can't recall how I fixed it. I am hoping that seeing the javascript would jog...
View ArticleNew Post: Need help with ItemUpdating when triggered by SPServices
Well, not surprising but SharePoint is so picky. I figured it out finally. The variable listItem is the following: SPListItem listItem = _properties.ListItem; Well because I am hooking into the...
View ArticleNew Post: GetAttachmentCollection and building links
Hello, A co-worker has this requirement and so an update on this would be most appreciated. Thanks, Areon
View ArticleNew Post: _spUserId is undefined
I have noticed that _spUserId is assigned on dynamic pages generated by SP (default.aspx). I am using an HTML page that I have created from scratch, therefore that variable is undefined (not null). I...
View ArticleNew Post: Get Site Title
This is probably a real noobie question but,.. How to I get the title of my current site so I can add it to list column?
View ArticleNew Post: SPCascade in Custom Form makes dropdown off center
<script type="text/javascript" src="path/jquery-1.7.2.min.js"></script> <script type="text/javascript" src="path/jquery.SPServices-0.7.1a.min.js"></script> <script...
View ArticleNew Post: CascadingDropdown: child dropdown shows old value after postback...
Hi Marc, I did some more research... and found the solution to this. It has nothing to do with SPServices :-) It seems that SharePoint does not like postbacks on editforms. We now do a postback with a...
View ArticleNew Post: Site usage stats
Hi all, I've seen various docs about getting details relating to a chosen site - one area I would like to explore further is retrieving site usage stats. Does anyone know if this is something that can...
View ArticleNew Post: GetAttachmentCollection and building links
What code have you tried so far @AreonJackson? Cheers,Matt
View ArticleNew Post: GetAttachmentCollection and building links
I found a different but effective way to change the attachment paperclip into a hover spot that listed each attachment as a link. I am sure you can alter to write the values into a column, and use...
View ArticleNew Post: Get Site Title
You don't need SPServices for that. You can do it with jQuery. The site title should be at the top of each page with an tag ID of 'ctl00_PlaceHolderSiteName_onetidProjectPropertyTitle' so referencing...
View ArticleNew Post: CascadingDropdown: child dropdown shows old value after postback...
Great. I couldn't tell if that was what you were doing or not, but that should work. M.
View ArticleNew Post: Get list of users from Active Directory using SPServices
Hi _JT_, Thanks for posting up your alternative solutions - both were very similar to what I ended up doing, but I do like your second one, particularly as I've never really been a big fan of working...
View ArticleNew Post: Can't get SPArrangeChoices to work
M, Here is a zip file with the list template, aspx file for the edit form, and accompanying files. Hope this is enough to test. https://dl.dropbox.com/u/16197114/CheckBoxTest.zip Thanks again for you...
View ArticleNew Post: Site usage stats
Alex: Usage is collected in log in the file system and they aren't available via the Web Services. Many people simply add Google Analytics to their master page and capture things that way. It really...
View ArticleNew Post: Site usage stats
Hi Marc, Thanks for letting me know - I half suspected this would be the case, but it was more a case of just trying to get to grips with SPServices, and what it can / can't do. It's still an awesome...
View ArticleNew Post: SPCascade in Custom Form makes dropdown off center
As Marc stated you appear to be working with a complex drop down. Try the following js to change the drop down to "simple" and see if you still have the issue: <script type="text/javascript"...
View ArticleNew Post: SPCascade in Custom Form makes dropdown off center
Actually, _JT_'s code won't work because it's in the wrong order. $().SPServices.SPCascadeDropdowns({ relationshipList: "Types", relationshipListParentColumn: "Departments",...
View Article