How to call a function or process when checkbox is checked
I have a Panel Box with multiple checkboxes in it. I want to be able to add additional checkboxes to the panel when one checkbox is selected. For instance when I check CbBox2, I want the entire HLBox1 to be added to the window. Is this possible in JSL? See code below: HLBox1 = H List Box(
spacer Box(Size(20,20)),
CbBox3 = Check Box( "Additional Option Only to Appear if CbBox2 is selected." );
...