为什么箭头键在icefaces dataTable textEntry里面不起作用

时间:2014-11-28 09:25:10

标签: jsf-2 datatable icefaces

我使用icefaces 3 ace:dataTable并且在列内我使用ace:textEntry.当我尝试更改ace:textEntry内的值时,我注意到箭头键不起作用。因此,无法使用向左,向右键更改列textEntry内的光标位置。为什么呢?

<ace:dataTable value="#{myBean.items}" var="row" 
               paginator="true" paginatorPosition="top" rows="5">
   <ace:column headerText="Item">
      <ace:textEntry value="#{row.itemValue}"/>
   </ace:column>
</ace:dataTable>

1 个答案:

答案 0 :(得分:0)

箭头键不起作用,因为ace:dataTable使用paginator。删除paginator="true"箭头后,键会再次起作用。