Senior Jisc Management profile should have a checkbox checked on new record load
Another profile should have the record unchecked on new record load.
How can this be easily achieved, without creating a new page?
I am open to the idea of using Javascript snippet on page load action if somebody can help me with the code, my example below isn’t working, and i’m not sure how to fix it! Thanks for your help
if ($User.Profile.Name == 'Senior Jisc Management') { var model = skuid.$M('Event'); var row = model.getFirstRow(); var alldayevent = true; model.updateRow(row,{IsAllDayEvent : alldayevent}); }<br>