Framework for working with JavaScript.
0
votes
1answer
21 views
Need to remove html tags from <td></td> area in SharePoint custom DispForm.aspx
I had created a custom DispForm.aspx for a SharePoint list, using SharePoint designer. I included a Rich Text column type to show in DispForm.aspx. The contents of the column are showing, but somehow ...
1
vote
2answers
41 views
Using JQuery to Hide Elements on Masterpage
I want to make a few "special" pages in Sharepoint 2010, that hides the menu and ribbon from the Masterpage.
Is it possible to write JQuery code in a web part that can hide/disable/delete some ...
0
votes
0answers
13 views
SP2013: Disable Column in GridView
I have a list which is shown in gridview (Quick Edit in the ribbon). Now i want to disable one column with jQuery.
This might be possible by applying the attribute
aria-readonly="true"
to the ...
0
votes
0answers
34 views
Image hover/replace - image works but is cut up
I've managed to get an image rollover (images are replaced with different colour areas at hover) and it works when I load the html file direct.
My content editor webpart makes the image go all ...
0
votes
1answer
17 views
Load All Task Items in to Page?
I have Task list in home page containing multiple task items,
Is it possible to approve multiple items at once, instead of one at a time (being redirected to the start page after each approval..) ?
1
vote
2answers
107 views
SharePoint 2010 web service - GetListItems not working in Chrome & firefox
function GetListItems() {
var soapEnv = "<?xml version='1.0' encoding='utf-8'?><soap:Envelope xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'>" +
...
0
votes
2answers
30 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
14 views
Timeline graphs in SharePoint 2010?
My client has a requirement to display a SharePoint calendar in a timeline format. Currently, it's being done by Simile Widget timeline:
http://www.simile-widgets.org/timeline/
Since I'm ...
2
votes
3answers
127 views
Detect Modal Dialog Close with JQuery
In my application, I am trying to hide scrollbars in the parent window when a modal dialog is opened...
I've added this to my Master Page:
$(function(){
if(window.frameElement != null)
{
...
0
votes
1answer
43 views
SharePoint; Javascript repeating click event already on page
I have a SharePoint calendar, and I've got some Javascript code to force a calendar overlay event to open in a modal dialog. Basically, it forces them to open in a modal dialog via this code:
...
0
votes
1answer
90 views
web part jquery ui dialog not working
I am working on SP2010 with visual web part in C#. I have added one form dialog using jquery-ui. When I use it directly from .ascx, its working. But when I am calling it from code behind, its not ...
0
votes
0answers
73 views
Cascade dropdown for multi select fields
I have successfully implemented the SPServices JQuery open source solution but unfortunately it doesn't seem to support multi select fields (I mean the ones where you can enable "allow multiple ...
0
votes
2answers
46 views
Autocomplete Textbox from Active Directory Users
Im making a webpart where a user should be able to add other users from active directory, without being able to know their full name etc. The field should be autocompleted in some way (like googles ...
0
votes
1answer
44 views
How to Customize Mobile View or Integrate Jquery Mobile into an already made SharePoint 2010 public facing site?
I'm very new to SharePoint Development and need some instruction or direction on how to customize the mobile view or use Jquery mobile on a SharePoint 2010 public facing site.
I have been tasked with ...
2
votes
2answers
159 views
Disable a form text field with jquery in CEWP not working in Chrome/Firefox
I want to simply disable a text field (specifically a "person/group" field text box) from being editable on the edit form page of my list item. I have it working in IE using a Content Editor Web Part ...