我的页面: - -
某些原因导致 panelGrid 在几行中创建了一个空单元格。
我想要一个可见的两列表格,第一列是标签,第二列是 inputText 元素或带有工具提示的 selectMenu。
我的解决方法是,创建一个 3 列的表,当 panelGrid 决定不创建空单元格时,添加一个<br></br>
提示它这样做。
<h:panelGrid columns="3" style="text-align:left">
<p:remoteCommand name="startJobActivate" actionListener="#{provisioningBean.startJobActivate}" />
<h:outputLabel for="longitudeIdAct" value="Longitude: " />
<p:inputText id="longitudeIdAct" value="#{provisioningBean.longitude}" title="Longitude" />
<p:watermark for="longitudeIdAct" value="Longitude" />
<h:outputLabel id="equipmentDropMenuActLabel" for="equipmentDropMenuAct" value="#{provisioningBean.accessDeviceLabel}" />
<p:selectOneMenu id="equipmentDropMenuAct" value="#{provisioningBean.equipment}" title="Not needed for CSI or SIP"
disabled="#{provisioningBean.equipDisabled}" style="width: 100% !important">
<f:selectItem itemLabel=" Equipment" itemValue="" noSelectionOption="true" />
<f:selectItems value="#{provisioningBean.equipments}" />
</p:selectOneMenu>
<p:tooltip for="equipmentDropMenuAct" />
<h:outputLabel for="rangeActId" value="Range: " />
<p:spinner id="rangeActId" value="#{provisioningBean.rangeAct}" min="1" title="Amount of telephone numbers to provide" size="3"
disabled="#{provisioningBean.rangeDisabled}" />
<br></br>
</h:panelGrid>
这是一个错误吗?我在这里想念什么?
编辑:哦,整洁!我设法创建了一个最小的例子,它仍然有同样的问题:D https://gist.github.com/WurmD/f3cb45669e6871acc77462f34891862f
所以这是一个 3 列的 h:panelGrid,但是第三个单元格被某些东西占用了
EDIT2:与 p:panelGrid 的行为相同