• Curious Force
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 4
    Replies

Am having issues with SOAP callout. Was supplied a WSDL but am unsure exactly how to make the callout. Looking for help ASAP. Willing to pay $300 for probably a 10 minute call/webEX.

Any help would be appreciated. I'm trying to get a field to render based on a picklist value seleciton but I can't seem to get it to work. Here's my VF code (I'm not using a controller).

 

<apex:page standardController="Opportunity">
 <apex:form >
<apex:pageBlock id="thePageBlock">
<apex:pageBlockSection columns="2">
<apex:inputfield value="{!Opportunity.Type}" id="Type">
<apex:actionSupport event="onchange" 
rerender="ProdFamilyModel"/> 
</apex:inputfield>
<apex:inputfield value="{!Opportunity.Fiscal_Booking_Date__c}"/> 
</apex:pageBlockSection>
<apex:outputPanel id="ProdFamilyModel" rendered="{!IF(Opportunity.Type != 'Test', true, false)}">
<apex:pageBlockSection columns="2" id="ProdFamily"> 
<apex:inputfield value="{!Opportunity.Product_Family__c}"/>
</apex:pageBlockSection> 
</apex:outputPanel> 
</apex:pageBlock>
</apex:form> 
</apex:page>

 

What am I doing wrong?

Am having issues with SOAP callout. Was supplied a WSDL but am unsure exactly how to make the callout. Looking for help ASAP. Willing to pay $300 for probably a 10 minute call/webEX.

Any help would be appreciated. I'm trying to get a field to render based on a picklist value seleciton but I can't seem to get it to work. Here's my VF code (I'm not using a controller).

 

<apex:page standardController="Opportunity">
 <apex:form >
<apex:pageBlock id="thePageBlock">
<apex:pageBlockSection columns="2">
<apex:inputfield value="{!Opportunity.Type}" id="Type">
<apex:actionSupport event="onchange" 
rerender="ProdFamilyModel"/> 
</apex:inputfield>
<apex:inputfield value="{!Opportunity.Fiscal_Booking_Date__c}"/> 
</apex:pageBlockSection>
<apex:outputPanel id="ProdFamilyModel" rendered="{!IF(Opportunity.Type != 'Test', true, false)}">
<apex:pageBlockSection columns="2" id="ProdFamily"> 
<apex:inputfield value="{!Opportunity.Product_Family__c}"/>
</apex:pageBlockSection> 
</apex:outputPanel> 
</apex:pageBlock>
</apex:form> 
</apex:page>

 

What am I doing wrong?