function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
NaishadhNaishadh 

core.apexpages.quickfix.QuickFixException: Unknown property 'DynamicController.tmp

Hi,

 

I have developed some visualforce pages which I want to include in main page. If I pass manual pagename or create getter for each page, apex:include is working fine but for below code, I am getting QuickFixException.

 

Please help!

 

Apex Class code

 

public with sharing class DynamicController {

public List<String> getComponentList() {
List<String> cList = new List<String>();
cList.add('page1');
cList.add('page2');
return cList;
}
}

 Visualforce Page

 

<apex:page controller="DynamicController" >
<apex:repeat value="{!ComponentList}" var="tmp">
<apex:include pageName="{!tmp}"/>
</apex:repeat>
</apex:page>

 

 

 

 

 

NaishadhNaishadh
Is it bug?