4
votes
Disable an SharePoint list item
The another option can be to create new permission level in your site.
From the site settings page, click the Site permissions link, then from the settings menu, click the "Permission Levels" menu ...
1
vote
Disable an SharePoint list item
You need to find out which items are updated, can be done by comparing Created and Modified (dates). Newly created items have same Created = Modified dates. However, updated items will have their ...
1
vote
Converting Jquery in Script Editor to its own Webpart
Yes it is possible to pass URL to HTML file. Use content editor webpart for this.
1
vote
Accepted
Converting Jquery in Script Editor to its own Webpart
Save the code in a separate HTML file in your environment then When you add a content editor webpart to a page, you can set the content URL to the location of the HTML file.
To re-use the existing ...
1
vote
Accepted
SPO: Show loading gif on Page until Datatable has loaded completely and is clickable
DataTables emits events which you can listen for. In particular, you could listen for the draw event which fires when the table is done drawing.
So you could do something like
function ...
1
vote
Using JQuery with SharePoint Framework
Your TS code looks correct:
jQuery('.accordion', this.domElement).accordion("option", "classes.ui-accordion-header", styles.myAccordionHeaderActive);
Try using 'important' in your CSS class ...
1
vote
How to Create a Multiple People Picker field in a HTML form using JQuery
You can use Client Side people picker in your custom HTML form.
Check below official documentation by Microsoft for same (Check for JavaScript code):
Use the client-side People Picker control in ...
1
vote
Accepted
Add text to SharePoint paging
Add the following code into a script editor web part into list view page.
<script src="https://code.jquery.com/jquery-1.12.4.min.js" type="text/javascript"></script>
<script type="text/...
1
vote
Add text to SharePoint paging
Just add the below script in script editor webpart for that particular list view or add it in master page to change it for all the list views.
/// <reference name="MicrosoftAjax.js"/>
/// &...
1
vote
Hide "Other Value"in sharepoint Refinement search web part
If the requirement to hide that div is only relevant on a few pages the content editor approach makes sense. However if it should apply of multiple pages I'll suggest that you make a custom search ...
1
vote
Accepted
Hide "Other Value"in sharepoint Refinement search web part
According to the HTML elements in your screenshot, add a Content Editor WebPart or Script Editor WebPart to the page and add the following CSS rule to hide the "Other Value" link.
<style type="...
1
vote
Accepted
How to add time stamp in addition to user name profile property
Sample script for your reference.
<script src="//code.jquery.com/jquery-3.2.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
var ...
1
vote
SharePoint Multiline of text field value using jQuery
For Title:
As the Title field is required field code snippet would be:
var titleValue = $("input[title='Title Required Field']").val();
For Multiple lines of text:
var multiline = $("textarea[...
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
jquery-ui × 102jquery × 47
javascript × 27
sharepoint-online × 17
2013 × 17
sharepoint-enterprise × 14
2010 × 13
sharepoint-designer × 11
web-part × 10
css × 6
sharepoint-server × 5
sharepoint-foundation × 5
sharepoint-addin × 5
spservices × 5
html × 4
csom × 3
client-object-model × 3
content-query-web-part × 3
xslt × 3
data-view-web-part × 3
list × 2
development × 2
rest × 2
custom-list × 2
jsom × 2