JMP Application : access dynamic panel box child elements
Hi,i am writing a app code which will dynamically create a textbox label and text edit box when user specifies how many is needed on button clicktextEditBoxList = {}; // global variable
...
LoadSteps = function ({thisBox}, {Default Local},
steps_number = NumberEdit1 << Get; // get number of items from number edit box
For(i=1, i<= steps_number,i++,
textBox = Text Box("Step : " || Char(i));
text