Hi ,
I am implementing a functionality where whenever user select any URL in Teamsite DCR , corresponding portal URL should be displayed in DCR. This functionality is working fine using onItemChangein formAPI.
Sample:
IWEventRegistry.addItemHandler("/Root/HomePage/HeroImage/Link/URL", "onItemChange", changeURL);
IWEventRegistry.addItemHandler("/Root/HomePage/Category/Link/URL", "onItemChange", changeURL);
similarly for other DCRs.
I want to make it generic . I have starting "Root" and ending "URL" as common in xpath and rest Xpath is different. So if it is possible I can use any regex expression on this event. I tried using regex for it , but it didn't work (I am new to regex).
Please help me if it is possible to put regex in IWEventRegistry.
Thanks in Advance.