| 1. |
What Is Difference Between Action Support And Action Function? |
|
Answer» Action function: INVOKE the controller method from JAVA script using AJAX and we can use action function from DIFFERENT places on visual force page. Action support: Invoke the controller method using AJAX when even occurs on page like onMouseOver, onClick. ect... and we can use action support for particular SINGLE apex component. Action function: Invoke the controller method from java script using AJAX and we can use action function from different places on visual force page. Action support: Invoke the controller method using AJAX when even occurs on page like onMouseOver, onClick. ect... and we can use action support for particular single apex component. |
|