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
ABRAR-UL-HAQABRAR-UL-HAQ 

ARRAY LIST == A to Z LETTERS: like HyperLinks

 

public class sample1 {
   public String[] getStrings() {
        return new String[]{'A','B','C','D','E','F','G','H',
        'I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W',
        'X','Y','Z','Other','ALL'};
    }
}
************************************************
<apex:page controller="sample1">
 <apex:repeat value="{!strings}" var="string" id="theRepeat">
        <apex:outputText value="{!string}" id="theValue"/> |
    </apex:repeat>
</apex:page>

public class sample1 {
   public String[] getStrings() {
        return new String[]{'A','B','C','D','E','F','G','H',        'I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W',        'X','Y','Z','Other','ALL'};
    }
}************************************************<apex:page controller="sample1"> <apex:repeat value="{!strings}" var="string" id="theRepeat">
        <apex:outputText value="{!string}" id="theValue"/> |
    </apex:repeat></apex:page>

 

bob_buzzardbob_buzzard

Is there supposed to be a question in this post?