New Post: SP2010 – Updating multiple list items
Obviously, that only returns the CURRENT date... which is what I just HAPPENED to be testing with, LoL.... so I'm redoing it now... LoL
View ArticleNew Post: SP2010 – Updating multiple list items
Ok, this is what I have, but it's giving me an error:var ReleaseDateMainNotFormatted = $("input[title='Actual Release Date']").val(); var ReleaseDateMain = $().SPServices.SPConvertDateToISO({...
View ArticleNew Post: Deleting documents
Hi, Found a frustrating issue when deleting documents today - it seems that the BatchCMD xml really doesnt like the escaped '%20' space. Also found the solution - sharing so that this might help...
View ArticleNew Post: bad caml query results in misleading error message from debug option
Same error message for 2014.01. Sorry about the long turn around time--could have shortened it by just changing the SP Services reference on one page.
View ArticleNew Post: SP2010 – Updating multiple list items
Got it. Removed original VAR and replaced both lines with:var ReleaseDateMain = $().SPServices.SPConvertDateToISO({ dateToConvert: new Date ($("input[title='Actual Release Date']").val()) });
View ArticleNew Post: How to call UpdateListItems from Link
I ran into an issue using the console.log with IE. Described here:http://stackoverflow.com/questions/7742781/why-javascript-only-works-after-opening-developer-tools-in-ie-once I have removed the lines...
View ArticleNew Post: SPServices is Undefied.
I understand that from the screenshot. That tells me that your reference to SPServices is incorrect. M.
View ArticleNew Post: Calling GetListItems then UpdateListItems from hyperlink
I am creating a dashboard to manage announcements and banners for the front page of a portal. I have no issue getting the list items I want to display in the queue list. I am rendering the list output...
View ArticleNew Post: SPServices is Undefied.
Another case where I have seen this happen is when multiple versions jQuery are being loaded. It's possible that SPServices "attaches" itself to the instance you don't have a reference to.Are you sure...
View ArticleNew Post: How to call UpdateListItems from Link
I'm glad it was helpful. :)Note: When you mix fiddling with production code, you may get errors. window.console statements are used for debugging purposes only and should always be stripped from any...
View ArticleNew Post: Deleting documents
If you decode the URL prior to passing it in, it should work:var url = "http://server/site/Lists/Working%20Docs"; console.log(url); console.log(decodeURI(url)); I don't think I've ever ran into this...
View ArticleNew Post: Calling GetListItems then UpdateListItems from hyperlink
This code can be made really simple... Have a look at this thread and see if it helps any:https://spservices.codeplex.com/discussions/548914 The key takeaway for you would be to store the information...
View ArticleNew Post: Calling GetListItems then UpdateListItems from hyperlink
Matthew thank you for the guidance. I had previously read that same discussion thread but I think I was lost in all the tangled xsl and conditional logic. I was overthinking it with nesting functions...
View ArticleNew Post: Possible bug in SPComplexToSimpleDropdown
Since our version is minified and bundled in a separate js file as part of our branding, I decided to scrap the cascade call in this case and rearchitect the relationship into a single list. Forking it...
View ArticleNew Post: spCascading Dropdown with repeated data
Patrick: SPCasacadeDropdowns wants the data to be in relational lists. You've got everything in one list, but if you split it into three, you'll be all set. You'd have these lists:Books --> Title...
View ArticleNew Post: Possible bug in SPComplexToSimpleDropdown
In newer versions, you can pass in the value of listName for just this situation. If you can't upgrade (jeez, it's time!) Then you'll need to work around it. M.
View ArticleClosed Unassigned: Adding Attribute to 'a' tag returns "Object doesn't...
Hi,Small issue. I'm sure you'll know a resolution.I'm using SPServices in a function that utilizes the GetListItems operation to grab a column value from the pages library for the current page. (A new...
View ArticleCommented Unassigned: Adding Attribute to 'a' tag returns "Object doesn't...
Hi,Small issue. I'm sure you'll know a resolution.I'm using SPServices in a function that utilizes the GetListItems operation to grab a column value from the pages library for the current page. (A new...
View ArticleNew Post: Possible bug in SPComplexToSimpleDropdown
I am passing in listName, but it doesn't do anything for simpleChild. The cascade does work in this instance, but values do not persist because the script bombs out. If you want more info let me know.
View ArticleNew Post: Update HTML Document Item Properties using it's Element Values
Here is what I have on this. I finally felt I have learn enough to take a stab at it. Its not working because the number of items that have to load, but I am working on the looping. I have seen what...
View Article