I am trying to use the $addHandler function to add a handler to a text box's click event
var o=$get('myTextBox');
var f = Type.parse('funcWithArgs');
$addHandler(o, 'click', f);
However I need to pass parameters to the called function. How do you do that?
TIA