Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <apex:pageBlockSection title="Residential Postcode" columns="1" collapsible="false">
  2. <apex:inputText id="myField"
  3. label="myField"
  4. value="{!myField}"
  5. size="12" maxlength="12">
  6. <apex:actionSupport event="onchange" reRender="sectionOne, sectionTwo" />
  7. </apex:inputText>
  8. </apex:pageBlockSection>
  9.  
  10. <apex:pageBlockSection title="Residential Postcode" columns="1" collapsible="false">
  11. <apex:actionSupport event="onchange" reRender="sectionOne, sectionTwo" />
  12. <apex:inputText id="myField"
  13. label="myField"
  14. value="{!myField}"
  15. size="12" maxlength="12" />
  16. </apex:actionSupport>
  17. </apex:pageBlockSection>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement