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?

有帮助吗?

解决方案

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
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top