Tagged Questions
13
votes
3answers
215 views
jQuery Multiple Dynamic Forms to Multiple Dynamic iFrames
I'm creating a multi-file upload. In the validation process where I build the list of files (before they are submitted), the first dynamically created <form> will submit and work as expected ...
13
votes
5answers
5k views
Deploy jQuery using a SharePoint Feature or physical files?
We are about to undertake a rather large customization of SharePoint and I wanted to get some feedback prior to jumping in with both feet. One of the issues we are kicking the tires on is do we deploy ...
6
votes
7answers
10k views
ASMX webservice not returning JSON, can only POST using application/x-www-form-urlencoded contentType
I can call my webservice using jQuery IF the contentType = "application/x-www-form-urlencoded; charset=utf-8"
This will, however, return the xml: <string>[myjson]</string>
If I try to ...
5
votes
1answer
617 views
Deleting a document via sharepoint web service using JQuery
I am trying to delete a document, using the sharepoint webservice, if someone uploads a document and then hits cancel. I have created the following function
function DeleteDocument(libraryName, ...
4
votes
4answers
619 views
jQuery POST. Can't get Request parameters using custom httphandler
I have a jQuery post method with JSON data included.
In my httphandler, in the processRequest method, Request["Operation"] is null and none of my data is posted. I am in a SharePoint 2010 ...
3
votes
4answers
94 views
Modify DOM with JQuery after any AJAX Call over which I don't have control
I'm working with SharePoint 2010, one of the aspx pages contains a Note Board web part which provides simple functionality to leave a comment on a given page.
When the page is loaded the comments are ...
3
votes
2answers
2k views
Using SharePoint SOAP with jQuery GetListItems - Simple but can't work it out!
I'm trying to load in a SharePoint list to a Unordered List so I can create a simple search function (the Sharepoint Search is just horrible). The code I have borrowed and adapted is below:
...
3
votes
3answers
958 views
Is my jQuery CDN url correct?
Could anyone confirm the the CDN src link for jQuery?
I am using the following:
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
...
3
votes
4answers
17k views
How to use jquery correctly in SharePoint Web Part - jquery doesn't always fire
I'm learning how to use jquery with SharePoint. My example draws a red box inside the Content Editor Web Part when a link is selected. My code works when the SharePoint page is in edit mode but not ...
3
votes
3answers
966 views
Altering href with jQuery no longer triggers a:visited style
My SharePoint site needs to preserve the a:visited style defined in CSS for links. I added the following code, which appends "&Source=/" to each href. It seems that by changing the href via ...
3
votes
3answers
7k views
GetListItems Webservice ignores my query filter
The code below seemingly executes the web service and returns values, but ignores the where clause (thus returning all items in the list). This is the simplest form of the problem that I've come up ...
3
votes
1answer
358 views
Can you safely manipulate the DOM with Sharepoint (MOSS 2007)and jQuery?
We have a MOSS 2007 installation where we rely on jQuery to handle automatic rotation of tabs in webparts, animation of sliding menus and tool panels. Intermittently we get the "Operation Aborted" ...
2
votes
1answer
207 views
Get id of SharePoint formfield for jQuery
I have a script I wrote to toggle some SharePoint formfields. I've gotten them to hide when the page loads, but I am unable to get them to show because I don't know how to pin down what the ids of the ...
2
votes
1answer
275 views
Nivo slider image flicker
This used to work fine, but I recently uploaded new images and I now notice a flicker in them.
This is integrated into my sharepoint site. The new images are not particularly larger than the other ...
2
votes
1answer
101 views
Tell JQuery Mobile not to add classes?
I have a Sharepoint application that we're using with mobile browsers. All I'm using from JQuery mobile are the touch event handlers.
JQuery mobile adds classes to the dom to make web pages more ...
2
votes
2answers
486 views
i need jquery to fire when people picker returns the value to the main form from the browse pop up window
has anyone attempted trying to fire jquery change event when people picker returns the value to the main form from the pop up browse window? i have tried several tags in the jquery statement but ...
2
votes
2answers
146 views
How to manage Jquery in SharePoint inorder to avaoid conflits with other jquery versions
Currently I’m developing a webpart for SharePoint. I’m using JQuery in my webpart. Users will install my webpart and use it in there sharepoint site. I’m new to JQuery. I have couple of confusions in ...
2
votes
2answers
600 views
JQuery Json Access of a Sharepoint List via Rest
I try to access a sharepoint list via Jquery and REST Interface. The Site with the code below is running localhost.
This code doesn't work:
$(document).ready(function() { getdata(); });
function ...
2
votes
3answers
698 views
Need jquery code to disable Drop downs and people pickers when a option in dropdown is selected in sharepoint
I am working with moss 2007. I created a drop down column in which has 3 options. If option1 and option 2 are selected the Dropdowns and People pickers should be disabled and if option 3 selected the ...
2
votes
3answers
319 views
$(selector).text() equivalent in c# (Revised)
I am trying check if the inner html of the element is empty but I wanted to do the validation on the server side, I'm treating the html as a string. Here is my code
public string HasContent(string ...
2
votes
3answers
436 views
JQuery ReplaceWith() function confusion
I am trying to do a replaceWith(). My Statement looks like this --> $("div.ms-quickLaunch").replaceWith("http://wwcshare/icenter/config/wwcMenuControl.html");
Can I replace a div like that? right ...
2
votes
2answers
516 views
Can't bind JQuery Datepicker with asp:TextBox in sharepoint
I have the next trouble.
I am creating the web part in sharepoint. I need a Jquery datepicker.
When i try to bind it with the html textbox it works.
But when i try to bind it with the Asp:textbox it ...
2
votes
2answers
364 views
jQuery nested array
Afternoon,
I have set up the following, the nested ifs are working however when i'd like to be able to pass the title of the array to the alterFields() function, that way the function will cycle ...
2
votes
2answers
326 views
Mouse hover using jquery
Hi My code in content editor web part is something like below
But I am getting description for all hyperlinks even if i mouse over on first item. Please let me know how to change the code in such a ...
2
votes
1answer
850 views
Authentication problem with JQuery and SharePoint Web Service
I'm calling a SharePoint Web Service (Webs.asmx) with JQuery to get a list of all subsites:
$(document).ready(function() {
var hrefParts = window.location.href.split('/');
var wsURL = ...
2
votes
2answers
5k views
SharePoint SOAP GetListItems VS jQuery - Need some advice on how to use Ajax to cycle through Custom List items as well as Ajax refresh the list contents
I am using jQuery to access Sharepoint 2007's SOAP interface via the GetListItems method to read in a custom list of anouncements in such a way as to have that list refresh once a minute (in case the ...
2
votes
3answers
426 views
Shortening jQuery Function
I've written the following functions to remove non-breaking spaces from the html code in a SharePoint site (SharePoint designer litters whatever code you write with non-breaking spaces whenever you ...
2
votes
2answers
731 views
Using jQuery to alter application.master pages in SharePoint
We use MOSS 2007 (SharePoint) for our intranet. Recently we were tasked with supporting the branding for multiple companies on our farm. We quickly realized that the application pages (produced by a ...
2
votes
2answers
452 views
How can I find html elements that contain specific text in an html comment?
I'm trying to use jQuery to identify <td> elements which contain specific HTML comment text. The standard ":contains" selector doesn't seem to be looking into the comments. My context here is ...
1
vote
2answers
76 views
Object doesn't support property or method 'slider' (jquery in Sharepoint 2010)
I'm getting the error Object doesn't support property or method 'slider' when loading my Sharepoint page.
I'm running this function on page load
function sliderFunctionality() {
...
1
vote
1answer
33 views
How to load div like iframe with a url with parameters(Load external data to a cell)
I would like to show a status in field but the result data is from an external link which means another sharepoint list.
I'm using something similar below but not sure if this is the best way to do ...
1
vote
0answers
121 views
How to pull file name from URL and display it
I have built a custom document library in SharePoint using CSS and HTML and I need a script that will show the opened file name in the ribbon above the library. I have very little Javascript ...
1
vote
1answer
70 views
It is posible compare between Single line of text type column and LookUp type column in sharepoint2007 using JQuery
I am new to sharepoint. I have some problem with sharepoint2007. I have two list, one list contains two column. One column is Single line of text type and the other column is a lookup type. The lookup ...
1
vote
0answers
216 views
JQUERY AJAX - How to Pass Credentials (User and Password) to Sharepoint Webservice
When I call the any of the Sharepoint Webservices using Internet Explorer, the Browser ask me for credentials... but when I'm using Firefox or Chrome I get a "401 Unauthorized" error.
I'm writing a ...
1
vote
1answer
71 views
Pulling HTML from a SharePoint page using AJAX/JQuery
I'm working on a homepage for a SharePoint workspace right now, and it would be really convenient from an end user and maintenance point of view if I could pull html from summary pages elsewhere on ...
1
vote
0answers
109 views
JQuery issues with SharePoint
I am having a strange problem with jQuery inside sharepoint. My jQuery code works fine in Web Applications but when I use the same code on a Web Part it creates problem.
Here is the problem with ...
1
vote
1answer
239 views
Sharepoint: Trying to get the latest ID
I am using a web service and am trying to return the highest ID number from the Posts list with viewname {B9212691-1AF1-41AF-9DA7-6073ADDB091B}.
So far I have the following.
<script ...
1
vote
1answer
306 views
Sorting Div's in a grid
I wrote a JQuery plugin that simulates a Windows 8 metro style panorama on the web, allowing users to mouse-swype between panels in the panorama.
I want the content owner to be able to create tiles ...
1
vote
1answer
160 views
Is it possible to group by more than 2 columns in a sharepoint List … NOT USING SHAREPOINT DESIGNER
Ive searched the web and the only soloutions that appear are using Sharepoint Designer. However due to the nature of my work i cannot access the sharepoint site through sharepoint designer (silly I ...
1
vote
1answer
133 views
Using Caml to order by
Im currently trying to order by the column "COUNTRY". However keep getting an error "Object Required". Ive done this a million times but cant get this to work code is the same as last time but not ...
1
vote
1answer
224 views
SharePoint dropdown (None) default change . Jquery code
Any jquery code to change the default (None) in my SharePoint dropdown control.
It does not appear that (None) is actually my default as it does not really send (None).
I'd like to change it to ...
1
vote
1answer
343 views
Free JavaScript/JQuery with Scatter Plot category naming functionality
I am looking for some sort of a free JavaScript/JQuery graphing library that has a lot of scatter plot functionality. Ultimately, I want to link the plot up with a SharePoint list and drop it in a ...
1
vote
2answers
78 views
Displaying a large value (Trillion) in a table in decimal form e.g 5.8 trillion
I need to add a new column to my sharepoint dashboard(created using Jquery). The value is a number which is extremly large and causing my dashboard to become mis figured. I have values in the ...
1
vote
1answer
306 views
Using jQuery to make a popup
I'm trying to make a simple jQuery popup on an existing page. The page itself will have the first part of some articles, with a more button following the intro. I would like the more button to display ...
1
vote
1answer
205 views
Sharepoint Photo Gallary Webpart
I want to craete a simple Photo Gallery web part in which I can fetch images stored in a picture library on my site and I want to do it with JQUERY.
1
vote
0answers
621 views
Hide a column in display(view form) in Sharepoint 2007 using JQUERY
I am trying to hide a column in Sharepoint 2007 using Jquery. The code I am working to hide columns
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
...
1
vote
1answer
338 views
HTML table with Sharepoint List Values
I'm having trouble working with a severely locked down version of sharepoint. I am trying to render a graph based on a Sharepoint list and although i've had success displaying the chart in sharepoint ...
1
vote
2answers
828 views
Jquery Autocomplete textbox using WCF Service in Visual Webpart Sharepoint 2010
How to make autocomplete textbox using jquery calling wcf services in visual webpart in sharepoint 2010
1
vote
4answers
323 views
Implementing Live Search using Jquery
I am a newbie in this field.
I have a sharepoint list containing a set of data and as the user enters his input in the text box it should display the options.
Planning to implement in keyup but ...
1
vote
1answer
262 views
Sharepoint soap request, how to set dropdown fields?
I want to post some data into sharepoint list using jQuery and Sharepoint webservices.
The problem is that I've to set some dropdownboxes required in the list, textfields are no problem. How to set ...