Hi all,
I've been putting together some fetchxml metafilters and the following one used to work for any text string (%value%). However, something has changed somewhere, and the opening wildcard no longer works. Does anyone have any ideas?
<filter type="or" adx:uiinputtype="dynamic" adx:uiname="Organisation">
<condition attribute="organisationidname" value="%%" operator="like" adx:uiinputtype="text"/>
</filter>
rendered with:
{% if filter.label =='Organisation' %}
<li class="entitylist-filter-option">
<div class="input-group entitylist-filter-option-text">
<label class="entitylist-filter-option-group-label h4" data-filter-id="{{ filter.id | h }}" for="{{ filter_element_id }}">
{{ filter.label | h }}
</label>
<input class="form-control" type="text" name="{{ filter.id | h }}" value="{{ option.text }}" id="{{ filter_element_id }}" />
</div>
</li>
{% endif %}