3

我已经尝试了以下代码,但它不起作用。请帮助我找到解决方案。

源代码:

CheckBoxList chklstProducts = new CheckBoxList();
chklstProducts.DataSource = lstProduct;
chklstProducts.ID = "chklstProducts" + (i + 1);
chklstProducts.DataValueField = "ProductID";
chklstProducts.DataTextField = "ProductName";
chklstProducts.DataBind();
cell6.Height = 20;

提前致谢

4

2 回答 2

2

默认情况下滚动不起作用。您可能需要在 div 中添加您的 checkboxlist 控件

<div style="height:100px;overflow:auto;"> <asp:CheckBoxList></asp:CheckBoxList> </div> 
于 2013-06-21T09:32:55.550 回答
2

您需要使用 CSS 来实现与 checkboxlist 的垂直滚动。您只需要将列表包装在此 div 中

<div style="width:200px; height:300px; overflow-y:auto">
// Checkbox List
</div>
于 2013-06-21T09:33:32.507 回答