Archives

  • I have made some small changes. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a bug. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • SPJS Charts v7.0.1.18

    I have fixed a bug – you find the change log here: https://spjsblog.com/spjs-charts-for-sharepoint/spjs-charts-for-sharepoint-v7-change-log/ Alexander

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • Use these snippets to turn on scripting in site collections on SharePoint online. You must be a tenant admin, and you must run the code in PowerShell. Change the variables $tenantName and $siteCollectionRelativeUrl to match your actual tenant and site name. Allow custom scripting # $tenantName is the […]

    Read More

  • I have fixed a bug. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • Updated 02.12.2021 If you want to enable drag-and-drop of attachments in your DFFS enabled SharePoint form you can use the code below. Add this to your Custom CSS #idAttachmentsRow .ms-formbody { border: 2px dashed #cccccc; } .dragOverInput { position: fixed; top: 0; left: 0; height: 100%; width: 100%; […]

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a bug – you find the change log here: https://spjsblog.com/spjs-charts-for-sharepoint/spjs-charts-for-sharepoint-v7-change-log/ Alexander

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • SPJS Charts v7.0.1.16

    I have fixed two bugs – you find the change log here: https://spjsblog.com/spjs-charts-for-sharepoint/spjs-charts-for-sharepoint-v7-change-log/ Alexander

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • One of my long time customers asked me if I had any possible suggestions on a person to fill a position. They are looking for an experienced professional, well versed in DFFS/SPJS located in the US for a full-time position. The position has not yet been posted so […]

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added one new feature. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have released a new version of CommentBox for SharePoint with a bugfix related to time on the comments being off by a few hours. Look here for the complete change log: https://spjsblog.com/commentbox-for-sharepoint/commentbox-v3-x-change-log/ Post any comments below, but please post bugs or questions in the forum: https://spjsblog.com/forums/forum/comment-box-for-sharepoint/ Alexander

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • SPJS Charts v7.0.1.10

    I have fixed one bug – you find the change log here: https://spjsblog.com/spjs-charts-for-sharepoint/spjs-charts-for-sharepoint-v7-change-log/ Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added a few new features. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added a few new features. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added a few new features. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I got a request for a solution to break inheritance of permissions on a new list item and assign edit rights to users selected in a people picker. IMPORTANT INFORMATION: Unfortunately users must have Manage Permissions rights to be able to use this code. You must assign this […]

    Read More

  • January 22 10:30PM: I got feedback from Microsoft and have verified that the problems is fixed. When using the /_vti_bin/lists.asmx webservice call to a list to retrieve multichoice people picker fields, multichoice lookup fields or multichoice managed metadata fields it fails with this error: Value does not fall […]

    Read More

  • I have fixed one bug – you find the change log here: https://spjsblog.com/spjs-charts-for-sharepoint/spjs-charts-for-sharepoint-v7-change-log/ Alexander

    Read More

  • I got a request for a solution to solve the following question: I break down the columns in the two lists below. What I’m trying to accomplish is to get the “key designation” field in the key log list to drive the number of assigned, unassigned and total […]

    Read More

  • Here is a snippet that helps create a folder in a custom list (not a document library) using the SharePoint REST API (and jQuery). This is the main function – no need to change anything in this one: function createFolderInList(arg) {     var deferred = jQuery.Deferred();     var folder = {         “__metadata”: { “type”: “SP.ListItem” },         “ContentTypeId”: “0x0120”,         “Title”: arg.folderName     };     var useGUID = arg.listId.charAt(0) === “{“;     jQuery.ajax({         “url”: _spPageContextInfo.webServerRelativeUrl + “/_api/web/lists/” + (useGUID ? “getById(‘” + arg.listId + “‘)” : “getByTitle(‘” + arg.listId + “‘)”) + “/items”, […]

    Read More

  • I have fixed a few bugs. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I got a request: Hi Alexander,I hope you are doing well. I’m wondering if you’ve done anything like this before: a field or area on an item where someone can add their own notes not visible to anyone except the logged in user. I thought maybe a rule […]

    Read More

  • SPJS Charts v7.0.1.8

    I have added some new features in DashboardSelectorAndBuilder.html – you find the change log here: https://spjsblog.com/spjs-charts-for-sharepoint/spjs-charts-for-sharepoint-v7-change-log/ Alexander

    Read More

  • I have fixed a few bugs and added a few new features. You find the complete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs. You find the compete change log here, and the updated files in the download section of the user manual. Please note that I have fixed one quirk related to checking multiple linked rules occurring when using the pipe character (or) and not only the comma […]

    Read More

  • SPJS Charts v7.0.1.5

    I have added some new features in SPJS Charts v7 – you find the change log here: https://spjsblog.com/spjs-charts-for-sharepoint/spjs-charts-for-sharepoint-v7-change-log/ Alexander

    Read More

  • SPJS Charts v7.0.1.4

    I have fixed a bug and added some new features in SPJS Charts v7 – you find the change log here: https://spjsblog.com/spjs-charts-for-sharepoint/spjs-charts-for-sharepoint-v7-change-log/ Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • This solution is designed for use in Custom JS in a DFFS enabled form. It will highlight the changes made in he last save so the person viewing the DispForm or EditForm can quickly identify what fields have changed and what was changed. Please note that it is […]

    Read More

  • Microsoft has backed down and reverted the breaking change that caused forms opened form a modern list view to open in the default SharePoint form and not the DFFS enabled form. See more information here: https://spjsblog.com/2020/07/30/fix-classic-form-fallback-on-modern-lists/ Alexander

    Read More

  • This version fixes a breaking change in Office 365 – introduced by Microsoft in the latest update. The DFFS installer is updated to fix this for new forms installed, but I have also made a tool that you can run in a site to fix all forms already […]

    Read More

  • ChangeLogDecember 12, 2020 – v1.0.0.3July 31, 2020 – v1.0.0.2This is what it doesHow to use itGet the script here This will fix the problem where the form is opened in the sidepanel without DFFS when you click to view, edit or add a new item from a modern […]

    Read More

  • Good news – read more here: https://spjsblog.com/2020/07/30/fix-classic-form-fallback-on-modern-lists/ This script fixes the problem: https://spjsblog.com/2020/07/30/fix-classic-form-fallback-on-modern-lists/ I have gotten a few reports from users of SharePoint Online that have opted in for “First release”. When using modern experience for list views and you click New, Open or Edit to add new […]

    Read More

  • Fixed one bug. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • June 18, 2020: Updated to fix a bug “countWords”: true. June 22, 2020: Updated to fix a bug where some of the code was missing in the snippet. I have updated this old solution to work with DFFS. Please note that it supports multiline PLAIN text fields only […]

    Read More

  • I have fixed a few bugs and added some new functionality – like support for mobile devices. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, or use the form. Best regards,Alexander

    Read More

  • Leave Request System

    Background This presentation seeks to show how easily you can setup a leave or vacation request system in DFFS. This presentation assumes that you already have SharePoint and DFFS already installed in your environment. The development is based on an On premises SharePoint 2016 setup however the same […]

    Read More

  • I’m now opening up for contributors posting their own DFFS / SharePoint related solutions. First up is Silvestre Kassoka with a Leave Request System. Do you want to make a contribution to the community by writing up a posts where you document your solution featuring DFFS or some […]

    Read More

  • Change logDFFS v4.4.5.0vLookup v2.2.153Casc v3.7.40SPJS-utility v1.346DFFS_Installer_v2.htmlDownload the BETA I have finally gotten around to address the missing Mobile support in DFFS. This new release adds support for mobile devices for all forms configured with DFFS on SharePoint 2013+. Because there are quite a few changes in this version […]

    Read More

  • I have fixed a few bugs. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • SPJS Charts v7.0.1.2

    I have fixed a few bugs in SPJS Charts v7 – you find the change log here: https://spjsblog.com/spjs-charts-for-sharepoint/spjs-charts-for-sharepoint-v7-change-log/ Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a bug and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Please note that I have made a lot of small changes to this version to clean up some old code. There […]

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I got a request for a solution to limit access to a form for 30 minutes while a report was being made to ensure no records was added or modified. This example code must be added to the specific form – in the Custom JS section. Change the […]

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • This example uses an Assignments list and a child list connected with vLookup to log the time used on that assignment. The code is used to ensure users doesn’t log more time than allocated to that assignment. The example expects the vLookup connection from parent to child to […]

    Read More

  • I have fixed a few remaining bugs from the version I released yesterday related to updating from an early v3.x version of DFFS with cascading dropdowns, and another for forms not using tabs. You find the compete change log here, and the updated files in the download section of the user […]

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a bug in DFFS, DFFS Installer v2 and some plugins. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed some bugs in DFFS and some plugins. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have some new features. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I forgot a debugger statement in the DFFS_frontend_min.js file in v4.4.4.11 posted yesterday. If you have installed this version you must update the file /SPJS/DFFS/js/DFFS_frontend_min.js to fix this issue. You find the compete change log here, and the updated files in the download section of the user manual. Post comments […]

    Read More

  • I have fixed one possible bug and added one new features. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a few bugs and added some new features. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • Create the site Unfortunately Microsoft have removed the scripting capability from the default templates in SharePoint Online, and this makes using Dynamic Forms for SharePoint impossible in these sites. To have a modern site which scripting capabilities you must pick this template: Using the Modern Content Editor Web […]

    Read More

  • I have updated the Modern Content Editor Web Part to fix an error when using it in a classic page: Uncaught TypeError: this._renderView is not a function. You find it here: https://spjsblog.com/modern-cewp/ Alexander

    Read More

  • To ease the transition from classic to modern SharePoint experience in SharePoint Online I have made a SPfx web part that replicates the behavior of the Content Editor Web Part. Read more here: https://spjsblog.com/modern-cewp/ Alexander

    Read More

  • I have fixed a few bugs and added some new features. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a bug in the handling of the translation files for charts and also made some changes to support loading the charts in a Modern Page. This is done trough the new Modern CEWP that I have made available today: https://spjsblog.com/modern-cewp/ You find the change log […]

    Read More

  • I have fixed a few bugs and added some new features – like a new DFFS Loader. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have […]

    Read More

  • Add this to your Custom CSSAdd these shared functions to your Custom JSText field exampleMultiline plain text fieldDropdown choice fieldMultichoice fieldPeople picker field There is no built in support for inline editing in the vLookup script, but you can add custom code to add support. Here is a […]

    Read More

  • I have fixed a few bugs and added some new features. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • DFFS Reverse Lookup

    1. Add this to the DFFS Tab where you want the items to show (in the Parent list)2.1 Code for Lookup column connection2.1.1 Add this to your Custom JS (in the Parent list)2.1.1.1 Base function – do not edit2.1.1.2 Parse function for date values2.1.1.3 Function call2.1.1.4. This example […]

    Read More

  • I have fixed a few bugs. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. Best regards,Alexander

    Read More

  • I have fixed a few bugs and small issues, and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. […]

    Read More

  • I have released a new version of CommentBox for SharePoint with some bugfixes and some new features. Look here for the complete change log: https://spjsblog.com/commentbox-for-sharepoint/commentbox-v3-x-change-log/ Post any comments below, but please post bugs or questions in the forum: https://spjsblog.com/forums/forum/comment-box-for-sharepoint/ Alexander

    Read More

  • There were an error in the file SPJS-vLookup_frontend.js in the latest version 4.4.4.2 dated July 31, 2019 that made text fields prefilled when adding a child item show two times like “Text value, Text value”. Download the package again from here and update the file found in /DFFS/plugins/SPJS-vLookup_frontend.js […]

    Read More

  • I have fixed a few bugs and small issues, and added some new functionality. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you have found a bug. […]

    Read More

  • Fixed a small bug related to transforming the chart in both v6 and v7, and added some new functionality related to colorByLabel in v7. You find the complete change log for v6 here and for v7 here. Alexander

    Read More

  • I have fixed a few bugs and small issues, and added some more error handling regarding custom functions. You find the compete change log here, and the updated files in the download section of the user manual. Post comments below, but use the form if you have questions or you think you […]

    Read More

  • I have finally been able to release the new version of DFFS where I have fixed several issues and done a major overhaul of the trigger handling to fix some problems with rule order when using multiple rules on the same field. A special thanks to Rudolf Vehring […]

    Read More

  • Updated August 05, 2019 to fix an error when used on the root site and the BaseUrl field was set to /. To load the lists on the root site you must leave the field empty. Here is a tool to toggle the visibility of all custom lists […]

    Read More

  • On July 1, 2019 I will increase the price on the Site license for Dynamic Forms for SharePoint (DFFS), SPJS Charts for SharePoint (Charts) and CommentBox for SharePoint (cBox). This is the changes: DFFS: From $50 to $100. Charts: From $50 to $75. cBox: From $50 to $75. […]

    Read More

  • One of the main areas of confusion when using DFFS is the automatic rule reversing of rules that are NOT evaluated to true. This example show how most users first set it up and ends up with the wrong result. I’ll first show how it is set up […]

    Read More

  • The code snippet linked below is used to dump all the list fields to a file to enable me to recreate the list when investigating a possible bug in DFFS. How to use the snippet Go to the DFFS enabled list you want to copy, and change the […]

    Read More

  • I have fixed a few small bugs – you find the change log here, and the updated files in the download section of the user manual. PS: The date on the zip file is 2019-03-31 – I just didn’t find time to publish it until now. Post comments below, but use […]

    Read More

  • I have fixed a bug with using multiple rules triggering on change / change from initial value on a multichoice field resulting in only the last rule on this trigger to actually run. You find the change log here, and the updated files in the download section of the […]

    Read More

14 Comments on “Archives

  1. Hi Alex,
    I need a small help on SP 2010.I have a customized list which is getting data from multiple lists.I have written a SPD work flow to get data and display in list.It’w working fine as per requirement.But it is taking 30 + seconds time.So i need to display a progress bar/spinning image while SPD work flow status = null or status = in progress.

    Can you pls help on.
    Thanks,SG

  2. hi Alex, I m having wsp file in sharepoint 2010. I need to deploy this wsp into office 365 along with workflows and all. Could you please help me.

  3. Hi Alex, How can i get the value of selected item from the look up field.Based on that value i need to get the value from another list .

  4. Hi Alex,

    I’m looking for a decent lightbox / slideshow to display a picture gallery (with thumbs & hopefully captions!) I found one a while back and I’ve lost it again. I don’t think it was originally from here, but I am positive I saw something on this site which directed to that solution. Had good look through here and can’t seem to find it.

    Can you point me in the right direction please or equally do you have a solution?

  5. Hi Alex,

    I have a SharePoint 2013 (The Cloud version) custom list where 1 column is a text field where contact numbers are keyed in. How can I get SharePoint to highlight duplicate values in that column so that every time a new item is added to the list, I’ll know if the contact number has been used previously?

  6. Hello,
    we have a license for a site collection and we have created a new subsite, what are the actions to take in order to keep the license on the subsite

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.