g_form.hideRelatedList() not workingIssue A simple client script with g_form.hideRelatedList() is hiding the list for some users, but not hiding the list for others.CauseTrying to retrieve by g_form.hideRelatedList('table_name') may not be available for all users in case of relationships. If it is an actual related list and not a relationship, using table_name is working fine.ResolutionRetrieve the ID for the relationship, for example 'REL:d169117b875209d01f8b0d47cebb359a' corresponding to 'table_name'. Using this in the client script instead of the table name will hide/show the relationship as expected. Instead of: g_form.hideRelatedList('table_name'); Use: g_form.hideRelatedList('REL:d169117b875209d01f8b0d47cebb359a');