我试图用 zk 列表框显示大约 300 个标题和 1000 行,但在 Internet Explorer 上它给出“停止运行这个脚本?” 错误。如果我单击否,它将继续并打开我的列表框。在 firefox 和 ıinternet Explorer 9 上它可以正常工作,但我应该使用 explorer 8 。这是我不工作的解决方案
<listbox id="listModel" rows="15"
mold="paging" pageSize="15">
<listhead >
<listheader id="${each}"
style="overflow:auto" label="${each}" width=" 250px"
forward="onDoubleClick=onRemoveFromHeader"
forEach="${comboModelColumns}" />
<custom-attributes
headers="${each}" />
</listhead>
<listitem
forEach="${listValues}">
<listcell
forEach="${listValues[forEachStatus.index]}"
label="${each}" />
</listitem>
</listbox>
这里combomodelColumns
列出了 300 个字符串。并且listValues
是一个包含 1000 个列表的列表。每个列表也包含大约 300 个字符串。