If you map Name and Percentage to the same page components, you will get both of them passed, just not together. It will be in the same execution, but first Percentage and then Name will be passed:
Percentage
Name
One option is to save Name into local storage.
Another option is to mapped them to different page components
Percentage -- percentageComponent
Name -- nameComponent
For nameComponent, you could add this JavaScript to get the value for percentage:
code
var p = Tiggzi('percentegeComponentName').text();
/code
Now you have both values.