jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.
0
votes
2answers
35 views
In SharePoint 2010, is there a way to display the total number of items that were submitted for the current month?
Example: I entered 10 items in a list this month and now I would like to see the number 10 display in another web part in another page. I don't want to see the individual items I just want to ...
3
votes
2answers
50 views
How to restrict the number of lines to show using jquery or css?
i have created simple Custom webpart.
It looks like
in that web part, Description display multiple line .
i have used html P tag to display Description value
<p>Loream IpsumLoream ...
-1
votes
2answers
31 views
how do i create a custom UI for a list column
What is the best way to create a custom feature to customize the UI of a list by filling in the column and/or field green when the value for row item = yes/no?
0
votes
0answers
31 views
Append dynamically generated checkboxes into a jquery dialog and pass back selected ones to th ecalle dpage
I had populated the jquery UI dialog with the list items (ID and Title only) I derive using a CAML query , on button click. I want to append checkboxes dynamically to the list item values selected in ...
0
votes
2answers
26 views
How to use image carousel to go to link page in SharePoint 2013 using JQurey
I am working on SharePoint 2013, there I created a Picture Lib. and I Created an Image carousel using J-Query but I want That When I click on Image it Redirect me to link Page who's URL I mention in ...
0
votes
0answers
132 views
jQuery Filter script won't filter list in SharePoint 2013 Web Part Page
QUESTION: The filter on the WP Page will not work. It should be filtering from the 'view' column.The view column is a calculated column, which derives its value from another column called 'Status'. ...
2
votes
3answers
225 views
Loading javascript after all the rest calls are finished on the sharepoint page
Environment: SP 2013 on prem, team site with publishing feature enabled
I want to call my javascript after the complete page is loaded. The page has some webparts that have some rest calls. So I want ...
0
votes
0answers
20 views
Create an accordion view of a sharepoint list on a collaboration site?
There are several solutions out on the web, but I haven't been able to make any of them work for me on a non-publishing site. Is there a simple solution for designating what list field(s) should be ...
2
votes
1answer
283 views
Keypress enter key does not work in Chrome
I am replacing the default datepicker for the jquery picker and I have a Javascript code to handle that. I also have a keypress event when I go to the element with tab and press enter it show me the ...
0
votes
1answer
69 views
Jquery UI not loading
I have a standard web part page and am reading items from a list and then displaying then under jquery tabs. I have downloaded the jquery UI (minified) and placed them in the site assets library of ...
0
votes
0answers
87 views
SPService object is not loaded!
I am working on a script to fetch the user profile services and get the current logged in user. This was initially working on IE8 and not working in IE11. Now its not working in any browser, any ...
1
vote
0answers
151 views
jQuery not showing custom error messages in PreSaveAction method of sharepoint 2013 list “New Form”
I am validating sharepoint list fields on PreSaveAction method of sharepoint list new form. I have done some customization and have put some labels with error messages under the sharepoint formfields. ...
0
votes
0answers
280 views
Dynamically set values for multiselect look up in sharepoint 2013 using jquery
I am trying to set the values of my lookup using jquery. Basically the values are coming from an array from another list. I was able to set the multiselect lookup with my array values. However i was ...
0
votes
0answers
38 views
modify the min length for the “People or Group” auto complete
i have a "People or Group" field inside my team site, and currently the built-in autocomplete will work after typing 3 characters. so how i can modify this to allow the autocomplete to work after ...
1
vote
1answer
357 views
Getting displayed month as an integer from fullcalendar
I wanted to fetch the current displayed month from fullcalendar with the following code:
function GetCurrentViewedMonth() {
var date = $('#myCalendar').fullCalendar('getDate');
var ...
0
votes
1answer
47 views
How can I set different event color that are fetched from SharePoint list?
I'm developing sharepoint hosted app that can fetch events from sharepoint list and put on fullcalendar monthly view. I have suceeded to fetch the events but all calendar events have the default ...
0
votes
1answer
974 views
Jquery fullcalendar - how to make current month (days) unselectable
I am building a SharePoint-hosted app in SharePoint. Basicaly it is a time planning app. I used a jquery calendar plugin (fullcalendar). My question is I have a "lock" button. When user clicks the ...
2
votes
1answer
921 views
Fetching items from sharepoint list and attaching in Fullcalendar with JSOM
I'm relatively new to sharepoint development. I want to load events from sharepoint list to fullcalendar month view. How can I achieve that with JSOM(not with REST api)?
So far I can add to the list ...
1
vote
1answer
139 views
jQuery UI autocomplete issue on SharePoint 2013
I've been working on a project and I decided to use jQuery-UI Autocomplete, the problem I've encountered is that when I scroll the page the "Dropdown menu" doesn't stay attached to his original ...
0
votes
1answer
867 views
How to get all users From Owners Group in sharepoint 2013 for a subsite
I am trying to get all the Users from a Sharepoint Owner's Group for a subsite. Below is the Script is Working fine . But it displays both Site and Subsite Users of Owner's Group.
For example If SITE ...
0
votes
2answers
41 views
jquery datatable repeating same results
`
var _web = null;
var _clientContext = null;
var ShoutoutDataSub = [];
var Name = null;
var fromDate = null;
$(function () {
$("#ShootOutfrmDate").datepicker();
...
1
vote
0answers
261 views
SharePoint Online Lookup Dropdown Autocomplete/Combobox
I have a list in Sharepoint Online, which has a lookup to an other list. No matter what, on the form it will always render as a dropdown value. When this list of values becomes huge, it's hard to find ...
1
vote
1answer
46 views
Jquery datatable [duplicate]
I have a custom list with Employee Name, Approval Status, Created Date columns in it.I am using SharePoint 2010 version.
I want to display the list items depending on one of the column "Approval ...
1
vote
1answer
48 views
Search based on filters using jquery
I am working on SharePoint 2010, I have a custom list with columns Start date , End date, Created by, Approval Status.
I have created a page where I am looking to filter the list and show the result ...
0
votes
1answer
178 views
Sharepoint Webpart with html Table using SPSERVICES
Attached image
Has my SharePoint list data and the output which I want to achieve. Can you please help me to create the structure which is in the Image Dynamically Also Next time when I try to ...
0
votes
2answers
55 views
Share point visual webpart with ajax modal popup
I am trying to update the text area displayed in the Ajax modal popup. I am updating the Text area with sharepoint list multiline text field. My spservices is wriiting the data correctly. But when i ...
0
votes
2answers
121 views
Display Images from sharepoint library in table
The below code displays the images in the image library Horizontally. But i want to display the first 5 images from my array in the table format. I have attached the output below. Can you please help ...
0
votes
1answer
152 views
auto populate field on NewForm.aspx with value from a field on another List 2007
I am trying to achieve a 1-to-many type system. I have 2 lists. [LIST_A] is the main list and has a column named SIMSID.
[LIST_B] is the many secondary list that I want to relate to [LIST_A] by ...
0
votes
1answer
749 views
Adding Help Tooltips To SharePoint ASPX Form Fields
I have an existing custom ASPX form that captures data to a SharePoint list. A new requirement has been received to provide fly-out tooltip type in-line help boxes on fields to make it easier for ...
0
votes
2answers
757 views
SPServices async performance
SpServices does offer the most user friendly piece of code on SharePoint, but if we enable async it still lags behind in performance when compared with the client model, any reasons?
Or am I missing ...
1
vote
0answers
83 views
zoom out Grantt chart SharePoint 2013 through Javascript
I would like to zoom out SharePoint 2013 Grantt Chart so that it only shows month in scale.
I have seen few examples which shows the same thing but none of them is working for me.
...
0
votes
1answer
131 views
Jquery on sharepoint Dropdown Fields
I have 10 Dropdowns in a sharepoint list. When the user Clicks on Add New Item in Newform.aspx Currently it will show only First Dropdown i.e (Drop1) With Empty Value. When the user Selects any Value ...
0
votes
1answer
568 views
jQuery to Reset sharepoint Dropdown value to empty in
Can you please let me know how to reset Dropdown value to empty using jQuery.
I tried using like this on Dropdown doen changed event but it is not working. Can you please help me. Below is the code i ...
0
votes
2answers
2k views
Sharepoint 2013 list Dropdown change event is not working using Jquery in NewForm.aspx
I have 10 Dropdowns in SharePoint list. Initially I want to show only one Drop down in the newform.aspx. Once the user selects a value in the dropdown i want to show another dropdown.
I was able to ...
2
votes
2answers
1k views
jQuery accordion on Wiki page only works in edit mode?
I have an SP2013 wiki page that I want to use a jQuery accordion on. Just with some static content, not pulling any information from anywhere in SharePoint. I created the page, inserted a script ...
1
vote
2answers
124 views
Strategy To Manage Deployment Of jQuery In SharePoint?
There are a multitude of examples where jQuery libraries and plugins are used in SharePoint 2010 and 2013 solutions.
There are problems with this approach because multiple versions of jQuery can be ...
2
votes
1answer
1k views
Jslink field run function after field is rendered
i did registered function for custom field rendering with RegisterTemplateOverrides and my custom field render works quite nicely.
Part of the field is input box for autocomplete, my issue is how to ...
0
votes
0answers
116 views
Jquery plugin to show videos from video library in sharepoint 2010
I have video library where more than 10 videos have been uploaded. I want to show video list on my page and let user select video to play from that list. any jquery pulgin.? i got some plugin but ...
2
votes
2answers
701 views
Display Description of choice column type on top
I have created a list with type Choice and set Description for the same. I have set Radio Buttons as "Display Choices Using".
When i click on Add New item the Description is shown at the bottom. Is ...
0
votes
2answers
52 views
Change By Name in sharepoint Blog site
How can i change the by name in blog site?. I checked that it is redirecting to /_layouts/userdisp.aspx?ID=17. I can get this id by running the below power shell script. But how can i change it in the ...
1
vote
0answers
71 views
how to display video through xslt
How to show video through xslt? I have video library uploaded with few videos and description of it. I have to show description and respective video in jquery acccordian format on the page.
0
votes
0answers
202 views
Errors Implementing jQuery UI Tabs in a Sub-Joined Data View
I am trying to implement jQuery UI tabs onto my site using a subjoined data view, but I am experiencing some issues. I believe it has to do with my XSL markup, but have been hitting my head against a ...
0
votes
2answers
455 views
Compare current user login name with four custom sharepoint list 2010?
I have 4 custom list (test A, Test B, Test c,test D). I need to find current user login belongs to which list in sharepoint. if current user belongs to Test b list i need to show pop up "U belong to ...
0
votes
1answer
145 views
Image Click event inside content editor webpart
I want to add an image click event inside the content Editor web part using the JavaScript only. Here is the scenario which i want.
I have 4 images in the main sharepoint page insides the content ...
0
votes
1answer
559 views
Displaying Field Contents in JQuery UI Tooltip
In SPD 2010 I have created an aspx page, in which I have inserted an Empty Data View. I then selected the list, and then fields which are shown on the page. I want to incorporate a "tooltip" popup ...
1
vote
1answer
6k views
Creating dynamic accordion from a custom list using jQuery and jQuery UI in SharePoint not displaying as should
I am trying to dynamically build accordion from list of items returned using JavaScript, jQuery and jQuery UI. Below is my code:
<div>
Search List <input type="text" ...
1
vote
1answer
412 views
how to display two fields (and their labels) in the same row? Sharepoint
I have two fields in out of the box sharepoint list form , both are single line of text
Is there any jquery way in which I can merge the two columns into one row
I am a newbie to coding. So I do not ...
3
votes
3answers
2k views
How to add tooltips to sharepoint 2013 form fields
I am working with a User (sandbox) Solution created in Visual Studio 2012 for SharePoint 2013. I have been asked to add custom tooltips to the default new and edit form fields. I have not been able ...
9
votes
3answers
211 views
How can I get search to index pages where the content is built up dynamically?
I am using the JQueryUI Accordion control within a web part on a SharePoint 2010 site. The way I am using it is to have the content in the accordion panels held as individual pages which are then ...
1
vote
2answers
3k views
How to pass values from SP UI Modal Dialog back to the server side code upon button click event
I have a click event on a button that opens a sp ui modal dialog page. and returns a specific value from a text area on that page. I was able to open the page in the modal dialog and able to return ...