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
chiranjib routchiranjib rout 

Suggest wapper class controller for below visual force page??

everyboby. i have facing problem with the wrapper class controller of the following visualforce page? the work flow is whenever i will enter the jobid in the box and click on enter it will search inside interview object and corresponding candidate Names(who has the same jobid) will appear under the name label but it won't showing anything . please suggest wapper class controller for this vf page`<apex:page controller="Client_Feedback" showHeader="false" sidebar="false" standardStylesheets="true">
<apex:Pagemessages id="msg"/>
<apex:form >
<CENTER><apex:image url="{!$Resource.LOGO}" width="200" height="130"/></CENTER>
<CENTER><p><b>Client Login Page</b><br /></p></CENTER>
<CENTER>
<apex:panelGrid columns="3" style="margin-top:1em;">
<p>
<b>JOB ID:</b><br />
<apex:inputText required="true" id="ID" value="{!var}"/>
<!--<apex:inputField required="true" value="{!intList.SCSCHAMPS__Job__c}" styleclass="arrange"/>-->

<apex:commandButton action="{!search}" value="enter" id="enter"/>
  </p> 
</apex:panelGrid>
</CENTER>
<apex:pageBlock >
<apex:pageBlockTable value="{!intList}" var="il" id="intList">
<apex:column >
 <apex:facet name="header">SL No</apex:facet>
 <apex:variable value="{!0}" var="count"/>
 <apex:variable value="{!count+1}" var="count"/>
 </apex:column>
  
 <!--<apex:column > 
 <apex:facet name="header">Interview ID</apex:facet>
 <apex:outputField value="{!il.Interview ID}"/> 
</apex:column> -->

<apex:column >
<apex:facet name="header">Name</apex:facet>
 <apex:outputField value="SCSCHAMPS__Interview__c">{!il.SCSCHAMPS__Talent__c}</apex:outputField> 
</apex:column>           
<apex:column >
<apex:facet name="header">Feedback</apex:facet>
 <apex:inputField value="{!il.SCSCHAMPS__Interview_Feedback__c}"/> 
</apex:column>

          
</apex:pageBlockTable>

<apex:pageBlockButtons location="bottom"/><center>
<apex:commandButton value="UPDATE"  action="{!saveInformation}"/></center>
</apex:pageBlock>
</apex:form>
</apex:page>`

 **controller:**
`public with sharing class Client_Feedback {
public List < SCSCHAMPS__Interview__c > intList {get;set;}
SCSCHAMPS__Interview__c intr;
//public List<SCSCHAMPS__Interview__c> getint()
//public List<WrapData> wd{set; get; }
 public String ID {get;set;}
 public string var{set;get;}
 public string Name{set;get;}
 public string Feedback{set;get;}
public void search()
{
 if(intList == null) {
intList = new List<SCSCHAMPS__Interview__c>();
for(List <SCSCHAMPS__Interview__c > intList= [select id,SCSCHAMPS__Talent__c,SCSCHAMPS__Job__c,SCSCHAMPS__Interview_Feedback__c
                                                         from SCSCHAMPS__Interview__c where SCSCHAMPS__Job__c=:ID 
                                                           limit 1])
                 { Name= intr. SCSCHAMPS__Talent__c ; }                                   
                                                           
  
                                                 
}

}
public Pagereference saveInformation(){
PageReference ref=null; 
//Adding the Records to inner class and to get the values for page block table.
        if(intList == null){
            intList = new List<SCSCHAMPS__Interview__c>();
            List < SCSCHAMPS__Interview__c > intList= [select id,SCSCHAMPS__Talent__c,SCSCHAMPS__Job__c,SCSCHAMPS__Interview_Feedback__c
                                                         from SCSCHAMPS__Interview__c where SCSCHAMPS__Job__c=:ID 
                                                           limit 1];
                                                         
            
}
return ref;      
}       
}`User-added image