Question

I need some extra data to print on my reports, other than the default objects (fields, labels and images), but I can't figure out how to add some extra variables. In nuBuilderPro, is there a way to manually add extra hash variables that can be used when running a report?

Was it helpful?

Solution

You can use nuSetHash() to set a Hash variable that will carry through to the next Form or PHP code you want to run.

nuSetHash('newTotal', document.getElementById('newTotal').value);   //-- javascript

print 'The new Total is : #newTotal#';   //-- php
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top