It’s seams that LiveData uses a "contains" filter operator even for static list properties. Steps to reproduce: 1. Create an AWM app with a static list (staticList1: Static List):
value1=First Choice|value2=Second Choice|value3=Third Choice|value33=No Choice
2. Add a LiveTable and a LiveData table to a new page:
{{velocity}}
#set ($columnsProperties = {'doc.title': {"link":"view"}, 'staticList1': {} })
#set ($options = {'className': 'Sandbox.FilterData.Code.FilterDataClass', 'translationPrefix': 'filterdata.livetable.'})
#set ($columns = ['doc.title', 'staticList1'])
#livetable('filtertest' $columns $columnsProperties $options)
{{/velocity}}
{{liveData properties="doc.title, staticList1" source="liveTable" sourceParameters="translationPrefix=platform.index.&className=Sandbox.FilterData.Code.FilterDataClass"}}{{/liveData}}
3. Add four entries covering all possible choices. 4. Filter the data by “Third Choice”: Expected result: Both tables should only display the entry for “Third Choice.” Actual result:  |