我想在网格中使用自动完成扩展器。这个扩展器运行良好
但问题是我们无法看到扩展器内的所有值。只有小部分显示给用户。
我们可以通过调整网格高度来完全查看扩展器值吗?
请帮我解决这个问题。
答案 0 :(得分:0)
您可以在aspx文件中设置扩展器弹出样式,如下所示
<style>
/*AutoComplete flyout */
.autocomplete_completionListElement
{
overflow: auto; /* Set multiple other properties to meet your needs */
height: 200px; /*Adjust the height as per your needs*/
}
</style>