New Post: Add new lookup item on the fly
I commented on the other thread re: adding the link using script. Just curious what would happen to the redirect if you changed spservices to not enclode the source url. change this line: newHref +=...
View ArticleNew Post: Use UpdateListItems to update related list's lookup value
I got this part working using the Event Receiver, but using the version history, rather than Before/After properties. With regards to design, this is MOSS. This is not SharePoint 2010. All the new...
View ArticleNew Post: Add new lookup item on the fly
PS... if you're using localStorage, then try sessionStorage instead. I don't know all the internals, but I think the former is available across sessions but is more dependant on the url while the...
View ArticleNew Post: Add new lookup item on the fly
@jbooker Wrong! Both localStorage and sessionStorage work at the domain level. If you store data in MyTeam.MyCompany.com, it will be made available to all pages in MyTeam.MyCompany.com. The difference...
View ArticleNew Post: Add new lookup item on the fly
Well I was right about one thing: 'I could be wrong about that..' learn somthin new every day! cheers sorry bcobra, sounds like the local storage prob has nothing to do with the url.
View ArticleNew Post: Check if SPServices is being called
Here is a little background on what I am trying to do... I have created a Web Part Page in SharePoint 2007. Added some calls to jQuery, CSS, etc. Added a DVWP to create a new list item. I am...
View ArticleNew Post: SPCascadeDropdown page refresh again...
Thanks for the reply. I am using SP 2010 Foundation with SPServices 0.7.1a. I have a custom list and a document library. The document library is a lookup column from the custom list and the contents...
View ArticleNew Post: Add to List if not in Drop Down
jbooker wrote: Russ thanks for this. Havn't tried it yet, but for those who want to do this completely client-side (no SPD), you can add the link using script like so:...
View ArticleNew Post: Add new lookup item on the fly
@jbooker $().SPServices.SPLookupAddNew doesn't use modals because of this reason: "While this function works with SharePoint 2010, because of the modal dialogs the user will get "lost". Alternatively,...
View ArticleNew Post: Getting Document list's information such as last modified date by whom
Hi, I apologize about the confusing post, but I would like to use the jQuery library on one of my project that is integrated with a java application. I swear I saw some C# examples along with VB. Well...
View ArticleNew Post: Add to List if not in Drop Down
bcobra, Correct me if I'm wrong: you have a List called 'Fields' and a column in that list being used as a lookup called: 'Columns (fields)' I added such a field to a list on my site, then put this...
View ArticleNew Post: Dynamic CAMLQuery
Marc, Thank you for a wonderfully written library! Thought I would contribute back to your library, be nice if you add it to your next release: I wanted to be able to add a CAMLQuery dyanmically to...
View ArticleNew Post: Add to List if not in Drop Down
jbooker, Thanks for the response. You are correct about list =fields and lookup column = 'columns (fields)'. I am putting the code in a text file and adding it to a CEWP on the Newform.aspx and no...
View ArticleNew Post: Check if SPServices is being called
There are two methods to check this out that I use quite frequently. The first is to take a look at the raw xml return that is produced from the Web Service call. The other involves using a built in...
View ArticleNew Post: Add to List if not in Drop Down
Sorry, the script works for lookups having more then 20 items in the lookup list because of the select box vs. compound controls for lookup columns. The selector for your output would be:...
View ArticleNew Post: Check if SPServices is being called
console.log(xData.responseXML.xml) and alert(xData.responseXML.xml) work too for quick tests.
View ArticleNew Post: Check if SPServices is being called
Jim: If you've got a customized form, then it's highly likely that the markup the form is generating isn't what SPCascadeDropdowns expects. On the other hand, if you enabled debug mode, it ought to be...
View ArticleNew Post: Check if SPServices is being called
Thanks for all of the information everybody. I do know that jQuery and SPServices are being called thanks to Marc's post. Now I have to figure out a couple other things. On my custom page the...
View ArticleNew Post: Check if SPServices is being called
I seem to recall if you are using a custom form and want to use the value added form functions from SPServices, you need to add some xsl:text fields into the page in order for the SPServices functions...
View ArticleNew Post: SPDisplayRelatedInfo not working on items in folders
Hi, I’m using SPDisplayRelatedInfo on a lookup field to an picture library to show a thumbnail but I have found that it is not showing thumbnails/looking up information for images that are in...
View Article