Now personal automations are truly automatic in iOS 14! Before, you had to tap a notification to run them, now that’s gone, they just run and are amazing! And dangerous! Have 🤩! More about iOS Shortcuts here.
Blog
It’s nice to only have a single e-mail address, but for some people that’s just impossible. And instead of configuring multiple accounts for all e-mail addresses on your phone, you can forward all mail to a single account and receive and send using all e-mail addresses. The native Google Mail mode on iOS (currently iOS […]
If the list’s forms are customized and you can’t edit a field using them, with due permissions you can just make a fetch request from the console to update a certain field. You need the list name, item ID, field internal name and the new value. As with all POST requests to SharePoint, you need […]
Whether you need to update the .js file and want browsers to automatically download the new version (skip local cache) or you need to completely change the script, here’s how you can achieve this in your browser’s console: const listUrl = ‘/sites/siteName/Lists/List’; const fieldTitle = ‘My Field’; const clientContext = SP.ClientContext.get_current(); const web = clientContext.get_web(); […]
There are a lot of smart devices out there these days that are compatible with Alexa, Google Assistant or HomeKit, although most of them only offer support for Alexa or Google Assistant. A lot of them also support IFTTT, an integration platform for end users. If you have an iPhone and a smart device with […]
Sometimes you need to know what z-Index to set on a positioned element in order for it to really be on top of everything. If you own the whole page, that’s easy to manage, but when working on a page shared with other scripts that you don’t control, you need a way to tell what […]
If you customized some part of SharePoint with a User Custom Action, Location=Scriptlink and need to update the js file at some point, having users use the new version is achieved by changing the scriptSrc. Otherwise, the old version of the JS file is cached by the browser even after F5. Only a SHIFT+F5 would […]
In case you ever provisioned a Title field with the property Hidden=TRUE, and you need to set it to Hidden=FALSE later, you end up with this enchanting error: Cannot change hidden attribute for this field There are a couple of articles that suggest using PowerShell and Reflection, but if you like a pure web / JS […]
JSLink is a way to attach custom JavaScript code to run when the object it is attached to is shown on the page. For example, if setting the JSLink property on a field, the JS file(s) will be executed whenever that field is shown in a view or in a form. JSLink property can be […]
As Microsoft announced at end of July 2016 that coded sandbox solutions will stop working, any existing event receivers must be moved to one of: Remote event receiver in a provider hosted app Workflow JavaScript that runs on the New or Edit forms Each has advantages and drawbacks, so you would plan ahead. Actually at the […]