大きなdataTablesの再レンダリングのパフォーマンスがかなり悪く、ブラウザがフリーズする可能性があるため、Salesforceはvisualforceコンポーネントに1000の制限を残しました。これには注意が必要です。
制限を超える回避策では、リストが大きくなり始めたときのヒープサイズに注意する必要があります。データが大きすぎる場合はSOQL
、ブラウザに返す必要のあるデータを減らすために、フィルタリング(オン)を使用することをお勧めします。(Select2
トリックを行います)
回避策を実行するには、いくつかの方法があります。ここにそれらのカップルがあります...
-行と最初のパラメータを使用して、表示するデータのオフセットと制限を設定します。
<apex:repeat value="{!myCollection}" var="item" rows="1000" first="0">
{!item.text}
</apex:repeat>
<apex:repeat value="{!myCollection}" var="item" rows="1000" first="1000">
{!item.text}
</apex:repeat>
<apex:repeat value="{!myCollection}" var="item" rows="1000" first="2000">
{!item.text}
</apex:repeat>
-ラッパーの使用:
Visualforceページ:
<apex:page controller="thousandLimit">
<apex:pageBlock >
<apex:repeat value="{!thousandBlocks}" var="block">
<apex:pageBlockTable value="{!block.Accounts}" var="a">
<apex:column value="{!a.Name}"/>
</apex:pageBlockTable>
</apex:repeat>
</apex:pageBlock>
</apex:page>
コントローラ:
public class thousandLimit
{
private limitWrapper[] thousandBlocks = new limitWrapper[]{};
private final integer listLimit;
public thousandLimit()
{
listLimit = 999;
}
public limitWrapper[] getthousandBlocks()
{
thousandBlocks = new limitWrapper[]{};
integer counter = 0;
integer loopCount = 0;
Account[] tmpAccount = new Account[]{};
for(Account a:[SELECT Id, Name FROM Account])
{
if(counter < listLimit)
{
tmpAccount.add(a);
counter++;
}
else
{
loopCount++;
thousandBlocks.add(new limitWrapper(tmpAccount,loopCount));
tmpAccount = new Account[]{};
tmpAccount.add(a);
counter = 0;
}
}
if(thousandBlocks.size() == 0)
{
loopCount++;
thousandBlocks.add(new limitWrapper(tmpAccount,loopCount));
}
return thousandBlocks;
}
public class limitWrapper
{
public Account[] accounts {get;set;}
public integer blockNumber {get;set;}
public limitWrapper(Account[] accs, integer i)
{
accounts = accs;
blockNumber = i;
}
}
}
-ユーザーreadonly
タグを使用して1kから10kに増やすことができます:
<apex:page controller="thousandLimit" readonly="true">
<apex:pageBlock >
<apex:repeat value="{!thousandBlocks}" var="block">
<apex:pageBlockTable value="{!block.cases}" var="c">
<apex:column value="{!c.CaseNumber}"/>
<apex:column value="{!c.owner.name}"/>
<apex:column value="{!c.App_Process__c}"/>
<apex:column value="{!c.Load__c}"/>
<apex:column value="{!c.subject}"/>
<apex:column value="{!c.Estimated_Completion_Date__c}"/>
<apex:column value="{!c.Complete__c}"/>
<apex:column value="{!c.Priority}"/>
<apex:column value="{!c.Case_Age_Days__c}"/>
</apex:pageBlockTable>
</apex:repeat>
</apex:pageBlock>
</apex:page>