New Post: Looking for some help with SPServices.SPCascadeDropdowns
Great!Note that you can also pass in the listName if you'd rather store your pages elsewhere. By default, I determine the listName from the URL:listName: $().SPServices.SPListNameFromUrl(),M.
View ArticleNew Post: Need help getting User's domain\login from their full name
I need to obtain a user's login name. I have their full name from a simple jquery on a list display page.The end goal is to create a new list item in another list with a "Person" populated in a "Person...
View ArticleNew Post: SPCascadeDropdowns - Custom Web part
Hi,I'm trying to implement this in a custom webpart rather than a list form but I'm having trouble getting this to work. I know I've referenced the java script files correctly since I'm able to create...
View ArticleNew Comment on "$().SPServices.SPDisplayRelatedInfo"
HI Marc, Nice method. My requirement is to implement this in the Display form rather than a new form or edit form. Is it possible?
View ArticleNew Post: SPCascadeDropdowns - Custom Web part
T:Please see this threadhttp://spservices.codeplex.com/discussions/405545 It just so happens that someone else asked basically the same question yesterday.Thanks, M.
View ArticleNew Post: Need help getting User's domain\login from their full name
Jayson:When you say that you've got "their full name from a simple jquery on a list display page", you may be able to get their account name from the same page as well. The account is usually also...
View ArticleNew Post: Uploading Attachment to a list item
Can you give some more info? Are you already in a list form? What's the context?M.
View ArticleNew Post: GetUserProfileByName returns user cannot be Found error
Maria:It would help to see your code. What do you mean by "using this method"?If you check the documnetation for SPGetCurrentUser, you'll see that it simply "screen scrapes" the info from the...
View ArticleNew Post: Uploading Attachment to a list item
Hi,..I have created a custom html form which acts as a front end to enter data in a list. I am showing this form using a webpart. Once user enters data in this form and clicks on save the data is...
View ArticleNew Post: How can I add a header x-requestdigest (canary to every post request)
I found a post about it. I'm not sure if you've seen this, but here it is:http://acveer.wordpress.com/2011/06/22/prevent-csrf-cross-site-request-forgery-attacks-in-sharepoint-application-pages/It seems...
View ArticleNew Post: Uploading Attachment to a list item
Why wouldn't you use the regular list forms for this? They include the mechanics for uploading attachments, assuming the list allows it.M.
View ArticleNew Post: Query Criteria on a Lookup Field
I've spent about two hours trying to get this to work...no luck yet...need help please! The value I'm looking for is "3 - Planning" in the CurrentPhase lookup field. Here is my CAMLQuery: (I can't...
View ArticleNew Post: Query Criteria on a Lookup Field
Have you tried:<FieldRefName='CurrentPhase'/><ValueType='Text'>3 - Planning</Value>M.
View ArticleNew Post: Query Criteria on a Lookup Field
Or (to add to Marc's suggestion), have you tried:<FieldRefName='CurrentPhase' LookupId='True'/><ValueType='Lookup'>3</Value>Assuming that the item '3 - Planning' is actually the...
View ArticleNew Post: Query Criteria on a Lookup Field
Thanks for the suggestions. Neither of those works. The call is otherwise working, as I can remove the CAMLQuery string and it returns all records. The CurrentPhase field returns "3;#3 -...
View ArticleNew Post: Query Criteria on a Lookup Field
Can you past your entire code showing the GetListItem call?
View ArticleNew Post: SPAutocomplete in Datasheet view
So, I'm pretty much brand new to the SharePoint world. I've implemented and tested the SPAutocomplete feature, which should be a huge asset for our use, however I was just informed that the employees...
View ArticleNew Post: SPAutocomplete in Datasheet view
Glad to be of help!Nope, all bets are off on the Datasheet view. It's an ActiveX control, and pretty much impenetrable.M.
View ArticleNew Post: Query Criteria on a Lookup Field
You wouldn't set the CAMLViewFields to have a "LookupId='True'" attribute. You would put that in the CAMLQuery however. Paste your code when you have a second and I'm sure we can get you fixed...
View ArticleNew Post: SPAutocomplete in Datasheet view
Like Marc said, Datasheet view is not friendly for front-end code, however, you may be able to repro most of the functionality with something like...
View Article