Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个视图面板,我设置为 rows="0" 以显示所有可用的行,但是当我加载网页时它仍然只显示默认的 30 行
<xp:viewPanel id="viewPanel1" var="entry" rows="0">
为什么会发生这种情况?我记得我曾在其他服务器上看到过这种情况,可能是某些服务器或数据库设置覆盖了视图面板中的行属性吗?
服务器正在运行 9.0.1 FP4
rows="0"也不适合我。
rows="0"
改用大数字:
<xp:viewPanel id="viewPanel1" var="entry" rows="1000000">
(没关系,因为无论如何您都不想在客户端上显示超过 1,000,000 个条目......)