Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author | user:1234 user:me (yours) |
| Score | score:3 (3+) score:0 (none) |
| Answers | answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections | title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status | closed:yes duplicate:no migrated:no wiki:no |
| Types | is:question is:answer |
| Exclude | -[tag] -apples |
| For more details on advanced search visit our help page | |
Results for icsr
Search options not deleted
1 vote
1 answer
742 views
CSR: ScriptLink/Custom Action CDN Libraries load after JSLinked files are loaded
I am almost to 2.0 with the generic iCSR support library. … loaded, but only way down after many scripts have loaded: That means: Custom Action files with external URLs are loaded AFTER JSLinks And that really s*ks because I would like to have one (CDN) iCSR …
3 votes
1 answer
750 views
The other parameters for the CSR VIEW Template function
function myCSRtemplate(ctx, CurrentFieldSchema, CurrentItem, ListSchema){ var name = CurrentFieldSchema.Name; var value = CurrentItem[name]; var ID = CurrentItem.ID; } TIA Danny ICSR …
6 votes
Accepted
Include JS Files in JS Link File
understanding-sharepoint-and-script-on-demand-sod/ https://www.simple-talk.com/blogs/2015/10/05/key-points-to-know-when-using-sp-sod-executefunc-and-sp-sod-executeordelayuntilscriptloaded/ Update #3 SOD at work: SP.SOD.registerSod('iCSR … ', '/xyz/iCSR_GenericLibrary.js'); SP.SOD.executeFunc('iCSR', null, function () { console && console.info('Loaded dependencies'); var csrfile="~siteCollection/Style Library/THISCSRFILE.js"; …
3 votes
Changing A Lists row color based on a number
So the complete CSR file (csr_contracts.js) will be: function executeCSR() {//function gets called AFTER the iCSR library is loaded var csrfile="~siteCollection/Style Library/csr_contracts.js";//name … ", 'https://365csi.nl/iCSR/iCSR.js');//register external library SP.SOD.executeFunc("iCSR", null, executeCSR );//load the iCSR library if (typeof iCSR ! …
4 votes
0 answers
250 views
are JSLinks on WebPart , View , Fields mutually exclusive?
So I can present the iCSR developer with a warning about the conflict What do JSLink settings on Fields do? Are they ignored because View/WebParts JSLinks take precedence? …
7 votes
1 answer
718 views
When JavaScript runs
SharePoint-Client-Side-Rendering-List-Forms-p https://code.msdn.microsoft.com/office/Client-side-rendering-JS-2ed3538a http://sharepoint-community.net/profiles/blogs/5-facts-about-jslink-in-sharepoint-2013-you-might-not-know BookMarklet iCSR … hl=en Bookmarklet (manual) BookMarklet iCSR Link Manager update JSLink settings on WebParts & Views, deploy JS files to Style Library J1 J5 JW …
1 vote
Highlight Sharepoint List based on condition
tokens matching the colors from the new Microsoft Planner iCSR adjusts the textcolor contrast for you (on each cell, you can't set a textcolor on a TR row) and more Note iCSR does not use _spYield … iCSR …
2 votes
SharePoint EditForm add new button to footer
Open an EditForm and investigate the URL (the same construct can be used on a NewForm) The URL has to be URL encoded (and it needs to be within the SharePoint domain) https://xxx.sharepoint.com/sites/iCSR …
3 votes
Accepted
Disabling tabular view
// @author You // @match https://365csi.sharepoint.com/sites/iCSR/_layouts/15/ViewEdit.aspx* // @grant none // ==/UserScript== (function() { document.getElementById('TabularViewAllowed …
0 votes
Accepted
Conditional Formatting Based on Number Range
would be to use Client Side Rendering (CSR) JavaScript You do not need an extra Calculated Column then to change the look, you override (same as with XSLT) how the field is rendered by SharePoint See iCSR … With iCSR loaded in a View or Form, all you need in the CSR file is: iCSR.Me({ file:'~sitecollection/Style Library/daysonhand.js', Fields:{ Days_x0020_On_x0020_Hand:{ View:function(ctx){ …
1 vote
Create a view based on filesize column and apply filter in a document library
,min,max,' there are',count,'files','totalling',total,'bytes'); return(total/count); }; console.clear(); var average=countFileSize(0,100000);//bytes console.info( 'average:',average,'bytes' ); iCSR …
2 votes
Accepted
Apply client side rendering (jslink) to all fields of type
RegisterModuleInit(SPClientTemplates.Utility.ReplaceUrlTokens("~siteCollection/Style Library/myCSRfile.js"), init); init(); }); And of course you use the Cisar Chrome Extension to WYSIWYG edit all this CSR iCSR …
1 vote
Styling a list in sharepoint 2013 with JSLink returns [object HTMLDivElement] instead of con...
javascript:modalOpen()\">" + ctx.CurrentItem["Title"] + "</a><div class=\"newsApp-date\">" + ctx.CurrentItem["Expires"] + "</div></div>" return itemHtml; If you want to develop more fancy CSR stuff; the iCSR …
6 votes
Accepted
(ClientSide) set/update JSlink to CSR files for (all) WebParts, Views, Fields
wrote my own JSLink Manager (runs as a Browser Bookmarklet) To: add/delete JSlinks on WebParts/Views in order Immediate save/apply on any change Have to refactor it a bit to work it into the iCSR …
0 votes
Accepted
Conditional formatting in item view (display form) using CSR / JS / CSS - is it doable?
You do have to apply the JSLink to both the View and the Form use the fabulous WYSYWIG CSR Cisar editor iCSR iSTATUS …