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
Lalitha Pavani Rallabandi 13Lalitha Pavani Rallabandi 13 

Selected Radio Button is not aligned properly

Hi,
I am trying to display the records in coloumns using <apex:selectRadio> in <apex:repeat>, but the alignment is differing based on the number of characters field having. Here is the output User-added image
Please help me on this
ANUTEJANUTEJ (Salesforce Developers) 
Hi Lalitha,

As per my understnding I see that you are seeing that if the text is more it is spanning more and if the label length is small it is taking less space, generally this is how it would be working, one way I could think of doing is you can show the options in a line by line manner.

I hope this helps.

Regards,
Anutej
Dushyant SonwarDushyant Sonwar
Hi Lalitha,

Add a class on the apex:radio styleclass attributes.
 
<apex:selectRadio styleClass="demoClass">

Adjust the width according to your need for example 50px , 100px, 200 px etc

Add style tag in your vf page.
<style>
        .demoClass td{
            min-width:500px;
        }
    </style>


 
Dushyant SonwarDushyant Sonwar
Lalitha,

Did you try with above code, Does it solve your purpose?