New Post: Add to List if not in Drop Down
Josh, I got the code working with: $("select[title='Columns']").parents("td.ms-formbody").append("<a onclick='javascript:AddColumn()'>Add New Columns(fields)</a>"); but not the...
View ArticleNew Post: Add to List if not in Drop Down
I think SPServices handles Multi-select lookups. Of course SPServices doesn't add new items to the listbox, but it does identify the element on the form depending on the type of lookup. Check your...
View ArticleNew Post: Check if SPServices is being called
@PirateEric It does look like I am going to need to find that information for my custom page although it is not vital at this point in my project. On another note I am using the following code on the...
View ArticleNew Post: Check if SPServices is being called
Jim: Hard to say without seeing the markup from your form. Your selectors are saying "find input element(s) with 'ff4_' in their id attribute". If there is more than one input element which matches...
View ArticleNew Post: SPArrangeChoice enhancement suggestion
If you have long labels, the table containing the radio buttons is not wide enough to stop the labels wrapping. Can I suggest that you add a width parameter to the function so we can specify the width...
View ArticleNew Post: Use jQuery to return ListItemID based on metadata column RefID
SharePoint 2010 We're crawling a DB2 database using a BCS External Content Type. There exists a SharePoint DocLib which contains a RefID metadata column that will match the ID of the crawled database...
View ArticleNew Post: SPArrangeChoice enhancement suggestion
That's really more of a CSS thing, but I suppose it makes sense to have some control over it in the function. There are quite a few other CSS settings which may override things. To make things more...
View ArticleNew Post: Use jQuery to return ListItemID based on metadata column RefID
Steve: You may have more moving parts in this than SPServices can help with, but I'd suggest you try it. I've never attempted anything close to what you describe, so it'll really be a question of...
View ArticleNew Post: Check if SPServices is being called
Thanks for the reply Marc. I was able to determine what the problem was. I was looking for values in a select and not an input. Here is the final code that I had to use that included my additional...
View ArticleNew Post: SPArrangeChoice enhancement suggestion
I sometimes just make the whole form wider, then extend the widths of certain input elements as well. For instance, you can make the form wider by adding... $(".ms-formbody").css("width", "900px");...
View ArticleNew Post: GetUserLoginFromEmail - prompting for credential for the logged in...
I am trying to get login ids of multiple users from array of email accounts but it is prompting me for the username and password for the same site that I'm logged in to. If I give myself full control...
View ArticleNew Post: SPDisplayRelatedInfo not working on items in folders
I have come up with a work around and written a custom calm query lookup function, And set: CAMLQueryOptions: "<QueryOptions><ViewAttributes Scope='RecursiveAll' /></QueryOptions>"...
View ArticleNew Post: SPDisplayRelatedInfo not working on items in folders
Aaron: Sorry to have not responded initially. Have you altered SPDisplayRelatedInfo to include the CAMLQueryOptions? M.
View ArticleNew Post: SPFilterDropDown: Reverting on EditForm
I have a single item edit DVWP working with SPFilterDropDown and SPGetCurrentUser. If it were a new item form, no problem. But, with the edit form, once the script runs, my multi-select lookup field...
View ArticleNew Post: SPFilterDropDown: Reverting on EditForm
The code would help: $(document).ready(function() { var thisUserAccount = $().SPServices.SPGetCurrentUser({ fieldName: "Name",debug: false}); $().SPServices.SPFilterDropdown({ relationshipList:...
View ArticleNew Post: SPFilterDropDown: Reverting on EditForm
Originally deployed with 6.2 - same result with SPServices 7.2 and jQuery 8.2.
View ArticleNew Post: SPDisplayRelatedInfo not working on items in folders
Hi Mac, No Problem, Nothing that sophisticated, I probably should have explained myself a little better, I only had a few mins to get it working so i used the SPDisplayRelatedInfo that I already had,...
View ArticleNew Post: SPFilterDropDown: Reverting on EditForm
Have you ever thought of having a different script for your edit form? Instead of running all of these functions on your edit form, you could simply find the Subscriptions in the DOM and remove all of...
View ArticleNew Post: Set value of "person" column
Just an FYI for any who find this thread. When updating a multiple Person field, you use this pattern: [ID0];#;#[ID1];#;#[ID1] Where [ID] is the collection ID for that person. The tricky bits: 1....
View ArticleNew Post: Add to List if not in Drop Down
I too am looking for a solution to refresh a multiselect look up field. When searching SPServices-1.7.2 I can not find a reference as described by jbooker. There is the field type...
View Article