i have a replicant and thr are 4 field inside the replicant. one of these fields is suppose status, a radio button. i register a onReplicantAdded event on the replicant container. in the handler function i can get an object item which would be like abc/xyz[2]/. Now i want to extract the value of abc/xyz[2]/status and according to that value i want to perform some other functionality. how to retrive the value of the field inside a relpicant. because if i do IWDatacapture.getItem(item+"/status"); i get an error.
IWDatacapture.getItem("/Events/Teasers[1]/HTML").setVisible(false);IWEventRegistry.addItemHandler("/Events/Teasers/ContentType","onItemChange", showHide);IWEventRegistry.addItemHandler("/Events/Teasers","onReplicantBeforeAdd", setHTML);IWEventRegistry.addItemHandler("/Events/Teasers","onReplicantAdded", setHTMLVisi);