You use Interactive Reporting Studio text boxes to display output to and gather input from the application.
Ways in which, in Run mode, you can use text boxes:
Text boxes are associated with three events: OnEnter, OnChange, and OnExit.
Example—For OnEnter, attach a JavaScript script
/* OnEnter Event—enables CommandButton */ var sect_name=’Dashboard’; var ctrl_name=’CommandButton1’; ActiveDocument.Sections[sect_name].Shapes[ctrl_name].Enabled = true;