I'd hope something like the following would work:
<input type="multiselect" searchWhenChanged="true" token="FY">
<label>Fiscal Year</label>
<search>
<query>| savedsearch filter_fiscal_year</query>
<condition match=" 1 == 1 ">
<set token="foo">"2014"</set>
</condition>
</search>
<default>$foo$</default>
<fieldForLabel>FISCAL_YEAR</fieldForLabel>
<fieldForValue>FISCAL_YEAR</fieldForValue>
<prefix>(</prefix>
<suffix>)</suffix>
</input>
Basically I'd like to populate $foo$ with the current fiscal year, while still allowing the user to select multiple fiscal years.
So far my errors suggest either that the token isn't being created properly OR that I can't use a token within the tag.
Thanks.
... View more