BDE: <apex:commandLink>, <apex:commandButton>, <apex:form>.
<apex:actionSupport> isn't needed for <apex:commandLink> nor <apex:commandButton> in order to perform partial page updates.
The simplest way to implement a partial page update is to use the reRender attribute on an <apex:commandLink> or <apex:commandButton> tag to identify a component that should be refreshed. When a user clicks the button or link, only the identified component and all of its child components are refreshed.
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_quick_start_ajax_partial_page_updates.htm
An <apex:commandLink> component must always be a child of an <apex:form> component.
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_commandLink.htm
An <apex:commandButton> component must always be a child of an <apex:form> component.
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_commandButton.htm
The simplest way to implement a partial page update is to use the reRender attribute on an <apex:commandLink> or <apex:commandButton> tag to identify a component that should be refreshed. When a user clicks the button or link, only the identified component and all of its child components are refreshed.
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
dasabhisek404
11 months agoFriedConsole2000
1 year, 3 months agoamm12345
1 year, 7 months agoJason_R
2 years, 4 months agoJason_R
2 years, 4 months agoLiquad
3 years, 9 months ago