• Akshay Soni
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
Hi All,

     I need to use radio button in place of CheckBoxes. But when i try to change the VF tag It is not working.
// The Below code is working fine with no issue //
 <apex:column >
       <apex:inputCheckbox value="{!con.isSelected}" />
  </apex:column> 

///////This is the code which i am using for Radio button. Its showing the radio button but functionality is not working here in case of Radio ////

   <apex:column >                    
       <input type="radio" value= "{!con.isSelected}" />                                     
    </apex:column>

Kindly help me on this.