You need to sign in to do that
Don't have an account?

Can anyone help me how to get different values from single method
Hi,
https://developer.salesforce.com/forums/#!/feedtype=SINGLE_QUESTION_DETAIL&dc=Apex_Code_Development&criteria=ALLQUESTIONS&id=906F0000000Ac3wIAC
Please check above link for details
Did you mean this one
https://developer.salesforce.com/forums/?id=906F0000000Ac3wIAC
From 2weeks onwards I am struggling with this issue???????
But this may help you
Thanq for response..Since I am building the form dynamically,so I cant hardcode like picklistSwitcher == 'Countries' and picklistSwitcher == 'States'...
Any how here is my code..Please check this
Controller Code:Visualforce Code:
Here I am building the form dynamically...
I have MappingObject -----> Fields are::::::::::::::FieldName__c,FieldCaption__c && FieldType__c etc----
Records are
FieldName FieldCaption FieldType FieldValue
_____________________________________________________
Status Status Combo Active,In-Active
gender Gender Combo Male,Female
Here I am trying to get the records based on FieldType__c(like ::::combo).
Here I have two records having m.Fieldtype as Combo.so 2 times getItems() will be called right?
So, options (returntype of getItems()) will store 2nd time value .And these values will be displayed in two SelectList values
( I want both values should be different)
Is this possible?