New Post: Query Criteria on a Lookup Field
iOnline...I was just playing with the LookupId argument, I realized it didn't do anything to the returned values. I DID get the query criteria to work: I left out the <Eq></Eq> tags!...
View ArticleNew Post: Uploading Attachment to a list item
I could have, but as per my requirement, I had to customize the look n feel of the user input form. Which the default list form does not do. It only all the fields come one after another. Is there any...
View ArticleNew Post: Uploading Attachment to a list item
It's still not clear what your requirement actually is. You can certainly rearrange the columns in a form page in several different ways.M.
View ArticleNew Post: Query Criteria on a Lookup Field
Don, Glad to hear you got it working ... PaulSent from mobile
View ArticleNew Post: Uploading Attachment to a list item
My requirement is very simple. I have to create a sharepoint site for my team where we can store team details. I have created a list, where i am storing all data. To enter the details I have created an...
View ArticleNew Post: Uploading Attachment to a list item
The benefit of using the default list forms is that they have the attachment logic built in. I often rearrange things on the default forms simply by using script to manipulate the DOM elements and CSS....
View ArticleNew Post: SPServices for Reader Access
Hi , in my current site, if i call any spservice method via reader access, it saying object doesnot support this property.but the same method working@same page working for different user.so i validated...
View ArticleNew Post: Are there any issues with IE 9 ?
Hi there,For future reference - I've found solution to my problem here :http://sharepoint.stackexchange.com/questions/41524/cascading-dropdown-for-lookup-with-more-than-20-itemsIn my case it was more...
View ArticleNew Post: SPServices for Reader Access
Sundar:My guess is that the Readers can't access the script files whereever you've stored them.M.
View ArticleNew Post: SPServices for Reader Access
Thanks Sympmarc for quick response,Wel,i think i need to explain bit more about my current scenarios,Actually i have stored following JS Files in layouts/ABC/Scripts folder.1.Dispform.js (MyCustom...
View ArticleNew Post: SPServices for Reader Access
The order in which you have your script file references matters. You should reference them in the order: jQuery, SPServices, DispForm.js.It may be that your master page already references jQuery, and...
View ArticleNew Post: SPServices for Reader Access
Thanks Symparc, i got clue from your answer, surely i do the test once i got access to environment and notify the results
View ArticleNew Post: Query Criteria on a Lookup Field
Don:Check out the CAML references. CAML uses a sort of odd sideways notation. you can only have two conditions surrounded by a conjunction. Example:<And> <Or> something something...
View ArticleNew Post: stack overflow
Michael:Where are you seeing the stack overflow message? In the browser window or in the debugger (e.g., IE's Developer Tools)? Have you tried stepping through your code?M.
View ArticleNew Post: stack overflow
p.s. You probably need async: false in all of your SPServices calls.M.
View ArticleNew Post: Get an item count for a SharePoint list
My end result is to perform a percentage complete calculation using the total items in a "Complete" status based on the total number of items in a list. I found information on an 'SPList.ItemCount'...
View ArticleNew Post: stack overflow
Thanks. We're a government installation, so are at MOSS with IE7--no debugging possible. I'll first try the async: false trick, then try the code on an SP2010 machine and IE9 (not used in-house but...
View ArticleNew Post: Get an item count for a SharePoint list
The total number of results that come back is within the <rs:data> node. The attribute you want to get at is `ItemCount`. So you'll want to pull all of the items from the list, then count the...
View ArticleNew Post: Get an item count for a SharePoint list
Thank you Matthew.Please forgive my next question; where do I place this code within my page code?
View Article