Skip to main content
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 ...
P S's user avatar
  • 4,827
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 ...
Falak Mahmood's user avatar
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.
Deepmala's user avatar
  • 1,867
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 ...
Kevin Stone's user avatar
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 ...
Dylan Cristy's user avatar
  • 12.9k
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 ...
Dmitry Kozlov's user avatar
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 ...
Ganesh Sanap - MVP's user avatar
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/...
LZ_MSFT's user avatar
  • 6,269
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"/> /// &...
Sohail Shaikh's user avatar
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 ...
Kasper Bo Larsen's user avatar
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="...
Anon's user avatar
  • 805
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 ...
Lee's user avatar
  • 4,279
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[...
Gopal Zadafiya's user avatar

Only top scored, non community-wiki answers of a minimum length are eligible