2015-09-04 61 views
0

當我將chrome更新到版本45.0.2454.85米。我不能在豐富的輸入值:inplaceInput標籤(內豐富:dataTable中)無法在富文本中輸入值:inplaceInput標籤上的版本爲45.0.2454.85 m

<rich:dataTable 
value="#{viewProductWarehouseProductList.listProductSelected}" 
var="_product" id="tableProductSelected" reRender="ds" 
onRowMouseOver="this.style.backgroundColor='#D3DBDE'" 
onRowMouseOut="this.style.backgroundColor='#{a4jSkin.tableBackgroundColor}'"> 
........ 
<rich:column style="width: 10%; text-align : right;"> 
    <f:facet name="header"> 
     <h:outputText value="Đơn giá" /> 
    </f:facet> 
    <rich:inplaceInput value="#{_product.priceOutString}" 
     minInputWidth="100px" id="priceOut"> 
     <a:support event="onviewactivated" 
      reRender="totalAmount,amountBeforeTaxTotal,amountVat,totalMoney,discountAmount, commissionAmountField, formContractDetail:commissionAmountField:commissionAmount, commissionInput, totalAmountConvert, realPrice, priceOut, contractPriceField" 
      actionListener="#{viewProductWarehouseProductList.renderMoney(contractsHome.instance.exchangeRate)}" 
      action="#{viewProductWarehouseProductList.calculatorCommission}" 
      ajaxSingle="true" /> 
    </rich:inplaceInput> 
</rich:column> 
........ 

我創辦的鏈接說關於變更Chrome 45.0.2454.85米 Stable Channel Update 和日誌Log change chrome 44.0.2403.157..45.0.2454.85 但我不知道問題在哪裏,我認爲鉻改善Javascipt(V8)導致我無法輸入值(我從來沒有見過這個問題)。

回答