开发者

Rendering Problem in IE8 with richFaces and JSF empty text node

开发者 https://www.devze.com 2023-01-17 01:19 出处:网络
I have a form of the following type: <rich:dataList var=\"var\" value=\"#{bean}\" styleClass=\"styleClass\"><h:form>

I have a form of the following type:

<rich:dataList var="var" value="#{bean}" styleClass="styleClass"><h:form>
 <h:commandLink value="#{var.prop}" action="#{bean.action}">
      <a4j:actionparam name="var" value="#{var.id}" assignTo="#{bea.sel}" />
 </h:commandLink>

Now, this is all fine in Firefox and IE 7. However, in IE 8 it creats empty text-nodes just before the link. I tried fixing it with the css.

form 开发者_Python百科{
   display: block;
   zoom : 1;
}

This did help to render it correctly in IE 7. However, the empty text nodes are still created an cause problems with iE 8.


I had the same problem. Removing display: block; should fix the issue for you. IE turns this into an empty text node when it's marked as a block.

0

精彩评论

暂无评论...
验证码 换一张
取 消