• Luis Antonio Aguilar Rosales
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
Hi Guys,   I hope you can help me, I only want to know what is the diference beween invoking a remoted method using this  statment 

RemoteClass.remoteActionMethod(str,function(result, event){ if (event.status) { alert(result); } } );

versus this one 

 Visualforce.remoting.Manager.invokeAction(
            '{!$RemoteAction.RemoteClass.remoteActionMethod}',  ...... 

 
Hello,

component1 and component2 are connected using flow and when we click on back button on screen (with component2), it should come back to component1 screen and display the same data what was there before on component1 screen. 
Here the data is of type wrapper class that is used to display the data on screen1. Flow variable is not able to store wrapper class data and therefore returning {} to screen1.

Please help and  suggest any solution.

Thanks,
Sravan

 
I have 2 object:
Products and Cart. The objects have the same fields.
I want to copy after a click (in a commandlink in my products vfp) a product from the Object products in a Cart object.
How i can write the code?