Tagged Questions
-1
votes
1answer
31 views
Clear query term displaying in search bar when results page loads
On a search results page, I have:
1) a global search bar in the site header
2) another search bar, specific to the page, that's part of a custom image search.
Issue:
When I perform a search using #2, ...
0
votes
0answers
18 views
Why does spGetCurrentUser return Sharepoint\\system instead of windows login
Why does the following spServices call return SHAREPOINT\system instead of the [Domain]\[Username] used to login to Window?
$().SPServices.SPGetCurrentUser({fieldName: "Name",debug: false});
I am ...
0
votes
1answer
1k views
jquery SPGetCurrentUser() to get the current logged in username in sharepoint 2007
I would like to use jquery to get the current logged in username and pass the user information to the connectible webpart.
This is what I have written in CEWP.
<script type="text/javascript" ...
0
votes
1answer
32 views
Converting date format from M/D/YYYY to Month D, YYYY
A page on my SharePoint site has a Date field with a datepicker. The selected date is inputted in M/D/YYY format (eg, 5/7/2013).
But I need the date to display like this once the page is published: ...
0
votes
1answer
464 views
jquery spservices getlistitems
im trying to get listitems from a sharepoint list using jquery spservices.
but it doesnt return any listitems.
here's the code, anyone knows what's wrong?
var _query = ...
0
votes
2answers
309 views
conditional validation newform.aspx
Using Share Point Designer 2010.
I want to conduct client side validation (jquery) but I don’t know how to run my code before the form gets submitted. The reason for this is my form has jquery that ...
0
votes
0answers
35 views
jQuery .overlay will not work in Sharepoint web part
I am having an issue with a simple jQuery .overlay function not working properly when added inside of a Sharepoint 2010 web part. The following code works perfectly inside of a normal page in ...
1
vote
0answers
65 views
Adding jQuery code in Sharepoint
I am completely new at SP design/dev, and I want to add custom jQuery code to the Format text > Edit Source:
$('#div1 ul li').hover(
function(){
$(this).find('a').animate({'top': '0%'}, ...
0
votes
0answers
18 views
Partial Loading on Sharepoint Designer
Im using Sharepoint Designer 2007 and I have a master page and a content page. In the master page i have a content placeholder and in the content page inside that place holder i have 4 divs that are ...
0
votes
1answer
33 views
Partial web page loading [closed]
Hello I'm trying to find out something about web development. I'm using sharepoint 2007, master pages, and content pages. I want to know how to make my website load by parts. Im not talking about a ...
1
vote
1answer
56 views
Use jQuery to hide text in parentheses
I have an image search page on a SharePoint 2010 site. Users can search by keyword and also have the option to filter by image type (e.g., thumbnail, hi-res, etc). So, let's say I search "medicine" ...
1
vote
1answer
69 views
SharePoint SPServices autocomplete not working for a column
I have a working jQuery SPServices code for a column Description in a list. The problem is, that when I try to get the data from another column, Project Item, with the same code, nothing happens. ...
0
votes
0answers
32 views
Open word and powerpoint documents programatically in user computer?
I have a web part which get all powerpoint and word documents in datalist from library in sharepoint as an image and there names
I need when I click on the img the word document open in user ...
-1
votes
1answer
65 views
Can jQuery remove this text?
I'm trying to find a work around to remove the "by" line from the Announcements Summary View on a SharePoint 2007 site. For various reasons, nothing I find on the web seems to be working - so I want ...
0
votes
0answers
38 views
Using SPServices to query large lists and avoiding the List View Threshold… feature
So I have a list that will have tens of thousand of items in it which I will need to perform queries upon using SPServices. The threshold is set to 8,000 so I'm having an issue with that.
So far I ...