I believe that this problem may be due to a DOM diff / update bug, in part because it is hard to reproduce (the 2nd filtering must contain only 1 row, the Williams app doesn't even work the first time), but most strongly because it is fixed by altering the page layout very slightly:
<ace:dataTable id="testTable"
value="#
{testBean.itemList}"
var="item"
stateMap="#{testBean.stateMap}"
selectionMode="single">
<ace:column headerText="Column One"
filterBy="#{item.itemOne}">
<h:outputText value="#{item.itemOne}"/>
</ace:column>
<ace:column headerText="Column Two">
<h:outputText value="#{item.itemTwo}"/>
</ace:column>
</ace:dataTable>
Removing the output text tags, and leaving the bare EL behind fixes the previous snip.
<ace:dataTable id="testTable"
value="#{testBean.itemList}
"
var="item"
stateMap="#
{testBean.stateMap}
"
selectionMode="single">
<ace:column headerText="Column One"
filterBy="#
{item.itemOne}">
#{item.itemOne}
</ace:column>
<ace:column headerText="Column Two">
#
{item.itemTwo}
</ace:column>
</ace:dataTable>
Steps to reproduce on test case:
Note: This issue occurs on the first try in the Williams 1Line app.