zk listbox で約 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 個の文字列も含まれています。