Using different buttons to "navigate" a contained mashup by changing a session parameter.
Hello,
I've got a contained mashup that is displaying data based on a "Step_Id" that it uses as a Mashup Parameter.
I am trying to have Prev and Next buttons that will cycle through the Step_Id and change the contained mashup.
I am using:
var params = {
name: "Step" /* STRING */,
value: Step /* STRING */
};
// no return
Resources["CurrentSessionInfo"].SetGlobalSessionStringValue(params);
As a Javascript service to update the "Step" Session Parameter. It seems that this isn't refreshing properly, something to do with client/server side stuff from what I've read. I can't figure out how to get it working. I believe I need another service that refreshes or updates the session variable.
Thank you.

