Reputation: 507
I have a button that sends out two Item values (items with an actual value. I can confirm they are not null because there are regions on the same page using them as substitution strings), when I click on it the following happens:
(no cache clearing processes are in place. Pic 1: button configuration Pic 2: result when clicked the first time Pic 3: result when clicked a second time after going back to the previous page and clicking it again)
Upvotes: 1
Views: 676
Reputation: 435
They will be sent if they are in session (server side), for this you need to submit them (or the page) before the link.
So make sure the button submits, and create a branch in processing with the same link builder you have in the image.
And dont forget to select your button that submits here: Server-side Condition => When Button Pressed
Upvotes: 1