- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2014 04:03 PM
Is there a way to filter the knowledge base by ownership group. We have a standard work category for our team and I would love to put a link that would show any articles that the topic standard work and the ownership group is one of my teams. I know I can do it if I search the published list, but I would like to have it return the results in the standard knowledge base page.
Solved! Go to Solution.
- Labels:
-
Knowledge Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2014 01:16 PM
So I ended up copying the kb_list ui page to kb_sw_list, and added an additional encoded query for the topic and ownership group. Then I made a new module for My Groups Standard Work and made it a url link to kb_sw_list.do.
kb.addQuery('active', 'true');
var qc1 = kb.addQuery('workflow_state', 'published');kb.addEncodedQuery('u_ownership_group=javascript:getMyGroups()^topic=Standard Work');
if ('$[jvar_show_unpublished]' == 'true' $[AND] gs.hasRole(gs.getProperty('glide.knowman.section.view_roles.review', 'itil,knowledge,knowledge_admin')))
qc1.addOrCondition('workflow_state', 'review');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2014 01:16 PM
So I ended up copying the kb_list ui page to kb_sw_list, and added an additional encoded query for the topic and ownership group. Then I made a new module for My Groups Standard Work and made it a url link to kb_sw_list.do.
kb.addQuery('active', 'true');
var qc1 = kb.addQuery('workflow_state', 'published');kb.addEncodedQuery('u_ownership_group=javascript:getMyGroups()^topic=Standard Work');
if ('$[jvar_show_unpublished]' == 'true' $[AND] gs.hasRole(gs.getProperty('glide.knowman.section.view_roles.review', 'itil,knowledge,knowledge_admin')))
qc1.addOrCondition('workflow_state', 'review');