Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Html bobswift
<iframe width="560" height="315" src="https://www.youtube.com/embed/NjN50mX9tq8" frameborder="0" gesture="media" allowfullscreen></iframe>

Bitbucket file macro
showLineNumberstrue
titleHideFieldFromRole.sil
urlhttps://bitbucket.cprime.io/projects/CAP/repos/sil-script-library/raw/Screen_Listeners/HideFieldFromRole.sil?at=refs%2Fheads%2Fmaster
syntaxHighlightingJavaScript

See also

...

This script hides a custom field for users who are not assigned to the developer role.

Code Block
if(isUserInRole(currentUser(), "EX", "Developers") == false) {
    lfHide("customfield_10711");
}