多选复选框列表未显示在带有滚动条的 window 中
Multiselect checkboxes List not displayed in window with scroll bar
我有一个要求,我想显示带有复选框的机会字段。
我已经使用 selectCheckBoxes 完成了此操作,但我无法在带有滚动条的 Vf 页面中的小框中显示内容,如图所示enter image description here
但我得到如下列表:enter image description here
示例代码---
<apex:pageBlockSectionItem >
<apex:outputPanel >
<apex:outputLabel value="Choose the query fields below." ></apex:outputLabel>
<apex:outputPanel >
<apex:selectCheckboxes layout="pageDirection" value="{!getfieldname}" borderVisible="true" >
<apex:selectOptions value="{!listCustomFields}"></apex:selectOptions>
</apex:selectCheckboxes>
</apex:outputPanel>
</apex:outputPanel>
谁能帮我解决这个问题?
为字段集添加了样式,现在是我想要的样式
<style>
fieldset{
height: 84px;
width: 181px;
overflow: auto;
}
</style>
我有一个要求,我想显示带有复选框的机会字段。 我已经使用 selectCheckBoxes 完成了此操作,但我无法在带有滚动条的 Vf 页面中的小框中显示内容,如图所示enter image description here 但我得到如下列表:enter image description here
示例代码---
<apex:pageBlockSectionItem >
<apex:outputPanel >
<apex:outputLabel value="Choose the query fields below." ></apex:outputLabel>
<apex:outputPanel >
<apex:selectCheckboxes layout="pageDirection" value="{!getfieldname}" borderVisible="true" >
<apex:selectOptions value="{!listCustomFields}"></apex:selectOptions>
</apex:selectCheckboxes>
</apex:outputPanel>
</apex:outputPanel>
谁能帮我解决这个问题?
为字段集添加了样式,现在是我想要的样式
<style>
fieldset{
height: 84px;
width: 181px;
overflow: auto;
}
</style>