After enter value in Textbox..it shoud re render the some componets.. i am facing issue re render the text area component.
After re rendering the </span> id is getting close before text area, due to this </span> text is getting displayed in text area.
This is happening only in IE11.
<h:inputText id="openingPrice" styleClass="txtbox_PF" value="#{pc_PricingFees.vehicleDisplay.newOpeningPriceStr}" maxlength="6">
<a4j:support event="onchange" reRender="alertID,errMsgs1,openPrice,hiddenFees,postingsalesfee, auctionfeeblock"
oncomplete="reArrangeErrorMessages();addAuctionPostingFees()" action="#{pc_PricingFees.recalculateFees}" />
</h:inputText>
<h:panelGroup id="auctionfeeblock">
<radien:authorizer rightValue="vehicleEntryEditAccess" hide="false">
<h:inputTextarea id="auctComment" rows="3" cols="10" styleClass="txtbox_PF_comment" value="#{pc_PricingFees.vehicleDisplay.auctionComments}"
onkeypress="addAuctionPostingFees()" onkeyup="addAuctionPostingFees();enforceMaxCount('vehPostForm:auctComment', 40)"
onkeydown="enforceMaxCount('vehPostForm:auctComment', 40)">
<a4j:support event="onchange"/>
</h:inputTextarea>
<h:message for="auctComment" showDetail="false" showSummary="true" styleClass="errorImageNextToField"></h:message>
</radien:authorizer>
</h:panelGroup>
Html response after re render auctionfeeblock :
<span id="vehPostForm:auctionfeeblock"><textarea name="vehPostForm:auctComment" class="txtbox_PF_comment" id="vehPostForm:auctComment" onkeydown="enforceMaxCount('vehPostForm:auctComment', 40)" onkeyup="addAuctionPostingFees();enforceMaxCount('vehPostForm:auctComment', 40)" onkeypress="addAuctionPostingFees()" onchange="A4J.AJAX.Submit('_viewRoot','vehPostForm',event,{'parameters':{'vehPostForm:_id333':'vehPostForm:_id333'} ,'actionUrl':'/sa-web/faces/pages/vehicleposting/pricingAndFees.jsp?javax.portlet.faces.DirectLink=true'} )" rows="3" cols="10" xmlns="http://www.w3.org/1999/xhtml"></span></textarea>