This topic is locked
[SOLVED]

 Checkbutton hide

4/13/2019 2:41:19 AM
PHPRunner General questions
I
Innocent100 author

I have a checkbox that un-hides a textbox using the click event on my checkbox.My problem is I can't hide the textbox again when it is unchecked,can somebody help me

A
ayctech 4/15/2019

var ctrlState = Runner.getControl(pageid, 'state');

ctrlState.hide();
$('[id^=value_idcuotas'+ pageid).hide ();

I
Innocent100 author 4/18/2019

so on which event do I put this code