我使用primefaces子菜单创建一个动态菜单:但是如果添加了许多菜单项,则其中一些菜单项无法显示在可见区域中。
菜单区域超出了网络的底部,因此无法显示。我想知道是否有任何解决方案可以改变子菜单的方向或位置?
非常感谢
这是我的代码:
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
<td valign="bottom">
<p:tieredMenu position="dynamic" model="#{ServerGroupMgmtBean.model}" id="serverGroupMenu"/>
</td>
<td width="6"/>
<td align="right" valign="bottom">
<p:commandButton id="dlgAddId" value="Add" oncomplete="dlgEditSG.show()" update=":editSGForm :smForm:messagePanel">
<f:param value="-1" name="editId"/>
</p:commandButton>
</td>
</tr>
</table>