Hi All,
Thanks in advance. I am trying to pass on a value to a function on an itemchange.
IWEventRegistry.addItemHandler("/root/UserControlArea1", "onItemChange", fun1(1));//Does not work
IWEventRegistry.addItemHandler("/root/UserControlArea1", "onItemChange", abc);
function abc()
{
fun1(1);
}//This works
Is there something I need to do in order to direclty pass on the value to a function call?
Thanks!
Jenni