jsf - iframe refresh issue -
i using jsf 1.2, , have iframe-refresh problem follows.
thanks in advance, mehmet
1) main.jsp :
…
<div id="diviframe" style="…"> <iframe id="w_iframe" src="#{sessionbean1.w_iframe}" style="…"> <p> ;o) </p> </iframe> </div>
2) #{sessionbean1.w_iframe} loaded :
"company.jsp"
3) inside w_iframe = company.jsp (session-scoped bean) :
<div id="…" style="…"> <h:datatable id="sirket" value="#{company.sirketmodel}" var="currentr" style="…"> <columns…/> </h:datatable> </div> <h:commandbutton id="w_save" action="#{company.event_handler_save}" style="…" value="#{sessionbean1.w_save_txt}"/>
4) problem :
when clicking on w_save button, company.jsp,
a) firefox , chrome : renders h:datatable , w_save button time without problem.
b) internet explorer 8 : renders times without problem, w_save button. when refreshing page f5, h:datatable shows up, too.
the solution uglier problem, unfortunately :o(
<div id="…" style="**width / height / location : not use % px**"> <h:datatable id="sirket" value="#{company.sirketmodel}" var="currentr" style="…"> <columns…/> </h:datatable> </div>
Comments
Post a Comment