In Android Studio (using java) for app development, I would pass String values or arrayList values from one view to another using intents. For example, I would write:
Intent myIntent = new Intent(Activity1.this, Activity2.class);
String thisString = “PassOnThisString”;
myIntent.putExtra(“ExtraCode”, thisString);
startActivity(myIntent); //(or startActivityforResult(myIntent, 1000)
On the second view, I would write:
Intent intent = getIntent();
String importantString = intent.getExtra(“ExtraCode”);
and in doing so I would be able to pass data from one view to another. How can I do this using javascript in Appivo?
One of my goals is to be select several rows from a “MenuItem” DataGrid and upon selection, add those items to a “CustomorCart” data model in the form of relationships. Is this possible?
Thank you for your help!