The extFilters of SearchObjectUI now works in client reports.
Try, for example, the following syntax (report_PrintedPages.xml):
<SearchObjectUI name="Search">
<attribute path="ObjectType.Id" op="In" objectTypes="page" mode="Hidden" />
<attribute path="[page.editionRef.titleRef]" mode="Normal" op="In" >
<ui labelPosition="Side" label="Title:">
<template kind="CheckBoxList" opMode="Hidden"/>
</ui>
</attribute>
<attribute path="[page.editionRef.date]">
<ui labelPosition="Side" label="Edition date:">
<template kind="Calendar" opCodes="Today Tomorrow ThisMonth ThisWeek EqualDate After Between" />
</ui>
</attribute>
<extFilter xquery="nav:audit/nav:actionDesc[@Action='Print']" />
</SearchObjectUI>
|