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
neeedhelpneeedhelp 

Disable Particular values

Hi Their,

 

     I'm getting values from api automatically...In this I dont need all values to be displayed....I want only few values how can I acheive it

  

N.V.V.L.Vinay KumarN.V.V.L.Vinay Kumar

Use Custom Piclist(SELECT LIST) and give values you required

 

if it does'nt match your senario please send me your senario 

neeedhelpneeedhelp

Thanks for your reply,Since I'm calling from Api I can't disable the values it seems.......

svpsvp

Hi,

 

Try using renderer attribute as false, on values dont need/want  to display on page.

 

 

 

Thanks,

svp

neeedhelpneeedhelp


        <apex:pageblocksection title="Payment Details"  >
            <Apex:selectradio value="{!Paymentmethod.PaymentType}" >
                <apex:selectoptions value="{!cnpxmlstring.Paymenttypes}"></apex:selectoptions>
                <apex:actionsupport event="onchange" rerender="PaymentResult"/>
            </Apex:selectradio>
        </apex:pageblocksection>

 

In this I'm getting the values directly from the api.....How can I disable....Any example