• Uday Kiran 109
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
Class:
   
 public class ListExample3 {
    public string name{set;get;}
    public string industry{set;get;}
    public string phone{set;get;}
    public ListExample3(){
        List<Account>accs=new List<Account>();
        Account a1=new Account();
        a1.name='Wipro';
        a1.industry='Information Technology';
        a1.phone='123';
        accs.add(a1);
        Account a2=new Account();
        a2.name='TCS';
        a2.industry='Banking';
        a2.phone='123';
        accs.add(a2);
    }

}

VF page:
 
<apex:page controller="ListExample3">
    <apex:form>
    <apex:pageBlock title="Account">
        <apex:pageBlockTable value="{!accs}" var="a">
            <apex:column value="{!a.name}"/>
            <apex:column value="{!a.industry}"/>
            <apex:column value="{!a.phone}"/>
        </apex:pageBlockTable>
        </apex:pageBlock>
    </apex:form>
</apex:page>
Class:
   
 public class ListExample3 {
    public string name{set;get;}
    public string industry{set;get;}
    public string phone{set;get;}
    public ListExample3(){
        List<Account>accs=new List<Account>();
        Account a1=new Account();
        a1.name='Wipro';
        a1.industry='Information Technology';
        a1.phone='123';
        accs.add(a1);
        Account a2=new Account();
        a2.name='TCS';
        a2.industry='Banking';
        a2.phone='123';
        accs.add(a2);
    }

}

VF page:
 
<apex:page controller="ListExample3">
    <apex:form>
    <apex:pageBlock title="Account">
        <apex:pageBlockTable value="{!accs}" var="a">
            <apex:column value="{!a.name}"/>
            <apex:column value="{!a.industry}"/>
            <apex:column value="{!a.phone}"/>
        </apex:pageBlockTable>
        </apex:pageBlock>
    </apex:form>
</apex:page>
Class:
   
 public class ListExample3 {
    public string name{set;get;}
    public string industry{set;get;}
    public string phone{set;get;}
    public ListExample3(){
        List<Account>accs=new List<Account>();
        Account a1=new Account();
        a1.name='Wipro';
        a1.industry='Information Technology';
        a1.phone='123';
        accs.add(a1);
        Account a2=new Account();
        a2.name='TCS';
        a2.industry='Banking';
        a2.phone='123';
        accs.add(a2);
    }

}

VF page:
 
<apex:page controller="ListExample3">
    <apex:form>
    <apex:pageBlock title="Account">
        <apex:pageBlockTable value="{!accs}" var="a">
            <apex:column value="{!a.name}"/>
            <apex:column value="{!a.industry}"/>
            <apex:column value="{!a.phone}"/>
        </apex:pageBlockTable>
        </apex:pageBlock>
    </apex:form>
</apex:page>