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
hylim1215hylim1215 

how do i group my item in visualforce repeat?

i have a custom picklist field for quote line items to group them from 1~10 but how do i display them in VFP according to their group? I wanted to show something like:-

Group 1 [Group Description taken from Quote level]
Item_1 $100
Item_5 $100

Group 2 - [Group Description taken from Quote level]
Item_2 $100
Item_4 $100

[ungrouped item goes here]

seems like wrapper will be the way for this but i am very new to VFP developement, could anyone give me some guideline?

Thanks.

Amit Chaudhary 8Amit Chaudhary 8
apex:repeat

An iteration component that allows you to output the contents of a collection according to a structure that you specify. The collection can include up to 1,000 items.
 
<!-- Page: -->

<apex:page controller="repeatCon" id="thePage">

    <apex:repeat value="{!strings}" var="string" id="theRepeat">

        <apex:outputText value="{!string}" id="theValue"/><br/>

    </apex:repeat>

</apex:page>


/*** Controller: ***/

public class repeatCon {

    public String[] getStrings() {
        return new String[]{'$100','$100','THREE'};
    }

}
Let us know if this will help you