我在<h:inputText><p:commandButton>
内一个接一个地安排<p:scrollPanel>
滚动窗格内的内容是动态的,因此根据特定条件添加或删除内容,并动态添加滚动条。如果内容超出滚动窗格的大小,则添加滚动条。
问题是当我滚动滚动条时,<h:inputText>
与滚动条一起滚动但是没有滚动,这意味着保持静止而不是上下滚动。
这是我的代码
<h:inputText style="width:41%" value="#{xx.selectedid"/>
<p:commandButton value="WebPhone" id="pwebpne" style="margin-left:1em;width: auto; height: 20px;font-size:85%;valign:top" actionListener="#{xx.PhoneSearch}" oncomplete="window.open('#{xx.pUrl}', '_blank')"
rendered="#{xx.editflg == true"} async="false">
我附上了我期望的截图,如下所示:
这似乎是一种浏览器问题,同样在mozilla firefox中运行良好,我使用IE 8找到了问题。 如何解决问题。
答案 0 :(得分:0)
我用<p:commandButton>
按钮取代了<h:commandButton>
并滚动了它。