Advertisement
Guest User

Untitled

a guest
May 25th, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. //Copy the following code into the browser's developer console on a Salesforce object's FLS edit page for an indivisual profile.
  2. //This will check all the visible checkboxes for you, great for very field heavy objects
  3. for(var a=document.querySelectorAll("[title='Visible']"),i=0;i<a.length;i++)"checkbox"==a[i].type&&(a[i].checked=!0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement