Lookup Control / pass variable
Posted: Fri Jan 26, 2018 6:51 am
Hi,
In nuBuilderPro, I set a hash variable in the form's js section:
The lookup form's sql uses this variable in the where clause to show only the active employees:
How to do this with nuBuilderForte? nuSetProperty() doesn't seem to be the right function to use.
In nuBuilderPro, I set a hash variable in the form's js section:
Code: Select all
nuSetHash('empFlagActive','1');
Code: Select all
SELECT * FROM emp_table WHERE emp_active = '#empFlagActive#'