Issue
How to hide some of the options available in the Class dropdown list in the kb_knowledge.do form.
Release
Confirmed in Madrid
Should also work in London and New York
Resolution
- Create a client script: (sys_script_client.do)
- Name: Give it a descriptive name
- Table: Knowledge [kb_knowledge]
- UI Type: ALL
- Type: onLoad
- Active: True
- Global: True
- Script:
function onLoad() {
// Type appropriate comment here, and begin script below
g_form.removeOption('sys_class_name','kb_template_how_to');
}
- Save
Now when you go to the kb_knowledge.do page, in the Class dropdown list, you should not see this option.