• leepoo biswal
  • NEWBIE
  • 0 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
<apex:page controller="task2" >
    <apex:form>
     <apex:pageBlock>
         <apex:pageBlockSection>
             <apex:dataTable value="{!s}" var="aa" >

          <apex:column value="{!aa}" />
                 
             </apex:dataTable> 
             
             <apex:pageBlockTable value="{!sdisplay}" var="vv">
                 <apex:column >
                     <apex:outputText value="{!vv}"/>  
<! when its {!vv} it shows                                                                            a0
                                                                                                                        b1

                                                                                                                         c2

but when ipu {!sdisplay} the out put is                            a0,b1,c3
                                                                                             a0,b1,c3
                                                                                             a0,b1,c3                                                          !>

                                                                                                                        
                 </apex:column>
             </apex:pageBlockTable>
             
         </apex:pageBlockSection>
        </apex:pageBlock>
    </apex:form>
</apex:page>

***************************************************************
public class task2 {
 public list<string> s{set;get;}
 public list<string> sdisplay{set;get;}  
 public integer i{set;get;}
    
    public task2(){
            s=new list<string>();
            sdisplay = new list<string>();
            s.add('a');
            s.add('b');
            s.add('c');
            i=0;
        for(string ss:s){
            
            sdisplay.add(ss+i);
            i++;                } 
    }

}