You need to sign in to do that
Don't have an account?
ledap13
return value from apex:inputField in my controller
Hi friends,
I have the following problem:
I want to return the value of my field in my controller.
<apex:inputField value="{!Opportunity.Tariff__c}" >
<apex:actionSupport event="onchange" action="{!selectProductsByTariff}" />
</apex:inputfield>
where tariff_c a Lookup Relationship to a custom object.
Thanks
I have the following problem:
I want to return the value of my field in my controller.
<apex:inputField value="{!Opportunity.Tariff__c}" >
<apex:actionSupport event="onchange" action="{!selectProductsByTariff}" />
</apex:inputfield>
where tariff_c a Lookup Relationship to a custom object.
Thanks
Below is an article on setting up lookup fields on visualforce.
http://blog.jeffdouglas.com/2011/08/12/roll-your-own-salesforce-lookup-popup-window/
Hope this helps !!a
Thanks