New Post: SPCascade on other language
Thank for quick reply, 1) working Code (form fields are in development english) : $(document).ready(function() { $().SPServices.SPCascadeDropdowns({ relationshipList:...
View ArticleNew Post: SPCascade on other language
Marian: Thanks. I was actually looking to see the markup from the page in the browser for parentColumn and childColumn. Can you post that? I don't need to see the options in the select, just the select...
View ArticleNew Post: Solution to grey out columns based on yes/no
If you disable fields on a New or Edit form, be sure to remove the disabled property using a PreSaveAction() or SharePoint won't store the current value of the field.
View ArticleNew Post: Get list item count for a week
Great approach, Paul! I hadn't reasoned that far. This ought to be very close: $(document).ready() { var itemCount; var daysFromSunday = (new Date()).getDay(), dateOffset = ( daysFromSunday > 0 ? "...
View ArticleNew Post: Solution to grey out columns based on yes/no
Good point Geoff. Maybe the readonly attribute would be better (and apply a style (opacity: .5) to dim the fields). Readonly will still submit the input values. _______Paul T
View ArticleCommented Unassigned: cascading Dropdown is not working [10233]
Hi marc,i use JQuery 1.7.1 and SPServices 01.min.jsBrowsers :IE 10,11.tried with MOzila and chrome tooi have 2 Lists namely1.Project Allocations2.Skill Endorsementsstructure of the list as...
View ArticleNew Post: Further explanation of caching a GetListItems result set
First off, the SPServices JQuery library is awesome and I have used it to develop some sweet functionality (primarily using the GetListItems and FindPeoplePicker functions). I'm wondering if you could...
View ArticleNew Post: Get list item count for a week
Hi Thanks for this. I have tried putting the code in but it returns nothing. The list has a field called CreateDate which is just a date field set to default value of today. From Marc's original...
View ArticleNew Post: Get list item count for a week
Hi Marc Tried this code with an alert, but the alert doesn't even appear.<html> <table> <tr> <td> <a href="/lists/opportunities1/newform.aspx?source=/" onMouseOver="return...
View ArticleNew Post: Methods of SPServices report as undefined
Let me suggest something better than "nothing works" - that is not goin to get you any help quick.Can you post your code of the click event on the button together with the alert()?My assumption is your...
View ArticleNew Post: Get list item count for a week
My guess is that you're getting an error somewhere. You also don't have the code wrapped in$(document).ready(), so it may be running before the elements are in the DOM. (Sorry I missed that before.) M.
View ArticleNew Post: Get list item count for a week
You're missing something in the code above, right around here:<script language="JavaScript"> { var itemCount; What's this extra '{'? My assumption, given that the code block ends with '});' is...
View ArticleNew Post: Get list item count for a week
Here is my altered code after the comments:<script type="text/javascript" src="/scripts/jquery-1.11.0.min.js"></script> <script type="text/javascript"...
View ArticleNew Post: Get list item count for a week
query is just a string which contains the CAML we're using to tell GetListItems what to fetch for us, so what you see there is right. In the SPServices call, you're not passing in the CAMLQuery:...
View ArticleNew Post: Methods of SPServices report as undefined
Paul's suggestion about the scope made something click. I checked my other code and it finally stood out the in my working code I had to put "window" in front of the call to SPServices....
View ArticleNew Post: Methods of SPServices report as undefined
Glad you figured it out... Good luck._________Paul T
View ArticleNew Post: Get list item count for a week
Perfect, how did I not notice that. Works perfectly now and here is the final code.<html> <table> <tr> <td> <a href="/lists/opportunities/newform.aspx?source=/"...
View ArticleNew Post: Get list item count for a week
Yay! I'm really glad you got it going. Hopefully now you're an SPServices fan. Please blog about it, warts and all. Maybe it's an SPServices Story?http://sympmarc.com/series/spservices-stories/ M.
View ArticleNew Post: Get list item count for a week
Thanks Marc. Shame I cant make SPC2014 I would have bought you a few drinks for this And yes will be sitting down and learning all about SPServices from today.
View ArticleNew Post: Using GetWorkflowDataForItem
CMK! the last solution will only give you the outcome of the current task (not the current Workflow)
View Article