Question: Only Admin should be able to see Resoltition Information tab
Object: Client Script
Class: GlideForm
Script:
function onLoad() {
//Type appropriate comment here, and begin script below
var isRole = g_user.hasRole('admin');
if (!isRole) {
g_form.setSectionDisplay('resolution_information', false)
}
}