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
sadesh warnakualsooriyasadesh warnakualsooriya 

html tag dd values list display

<li><dl class="Url_Menu"><dt><a href="#!"><span>URL LIST</span></a></dt>
        <apex:repeat var="x" value="{!Objects2}" rendered="{!Objects2!=null && Objects2.size>0}">
          <apex:outputPanel rendered="{!!(x.obj2==null||x.obj2.size=0)}">
          <apex:repeat var="y" value="{!x.obj2}" rendered="{!x.obj2!=null && x.obj2.size>0}">
 
       <!-- This doesnt show the values becasue of dd tag -->   
         <dd><a href="{!y.Url__c}" class="linkTxt">{!y.Name}</a></dd>

                      </apex:repeat>
                    </apex:outputPanel>
                    </apex:repeat>
          
          <dd><a href="#!" class="linkTxt">LInk01</a></dd>
          <dd><a href="#!" class="linkTxt2">LInk01</a></dd>
          </dl>
 </li>
Hi, im new to salesforce vf pages, currenlt trying using the above code and get the Url list values as in the insde HTML <dl> and <dd> tags, but it doens't show, is there any Apex input is missing to show values inside the <dd> tag ? 
ProlayProlay
Have you compiled this code? The code does not seem to be correct. Can you specify your requirement here?