How to remove one of the items from Class list on kb_knowledge tableIssue How to hide some of the options available in the Class dropdown list in the kb_knowledge.do form. ReleaseConfirmed in Madrid Should also work in London and New YorkResolutionCreate a client script: (sys_script_client.do) Name: Give it a descriptive nameTable: Knowledge [kb_knowledge]UI Type: ALLType: onLoadActive: TrueGlobal: TrueScript: function onLoad() {// Type appropriate comment here, and begin script below g_form.removeOption('sys_class_name','kb_template_how_to');} SaveNow when you go to the kb_knowledge.do page, in the Class dropdown list, you should not see this option.