Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
is possible field label control on java on load event?examplevar ctrlfirstname = Runner.getControl(pageid, 'firstname');var ctrlsecondname = Runner.getControl(pageid, 'secondname');ctrlfirstname.on('change', function(e){if (this.getValue() == 'John'){ctrlaecondname.hide();ctrlsecondname.setValue('');how to hide secondname label ????}else{}});
There is no support for this kind of functionality in PHPRunner however you can do that manually.You'll need to enclose field label in a DIV and show/hide it manually. See example here: http://xlinesoft.com/phprunner/docs/add_folding_section.htm
thnx admin for reply.