我有一个要求,我想用复选框显示机会字段。 我使用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>
有人可以帮我吗?
答案 0 :(得分:1)
为fieldset添加了样式,现在就像我想要的那样
<style>
fieldset{
height: 84px;
width: 181px;
overflow: auto;
}
</style>