Sorry, I am a newbie in salesforce.
I searched all over the internet, and found only how to create a custom VF page with Radio Buttons, but I cannot figure out how to add it to my custom object. I have a picklist which I need to replace with radio buttons. My custom project is called 'Pre_propo__c'. I do not know either I need to link this VF component to already existing standard component (picklist), or how to define it unlinked to any picklist in the object. When I place place this component on the object layout I do not see anything when I create a record.
Please, help.
VF:
<apex:page standardController="Pre_propo__c">
<apex:form >
<apex:selectRadio value="{!Pre_propo__c.Research_Cluster_2__c}">
<apex:selectOption itemLabel="Public" itemValue="Public"/>
<apex:selectOption itemLabel="Private" itemValue="Private"/>
<apex:selectOption itemLabel="Subsidiary" itemValue="Subsidiary"/>
<apex:selectOption itemLabel="Other" itemValue="Other"/>
</apex:selectRadio>
</apex:form>
</apex:page>
Layout:
Record creation:
Thanks