Hi,
I am new to workflow modeler. Say for eg:- a, b,c ,d , e, f, g are radio buttons. By default, 'a' is aleady selected. Whenever I select e or f or g, the visibility of an other item should be made true and it will displayed to the user. When a or b or c or d is selected, visibility of that item will be set to false and it will not be displayed in screen. Wrote 'OnItemChange' addItemHandler for that Item in FormInit and the code is working fine.
Now, my requirement changed, they want to change radio button to checkbox. Here, as I told, 'a' is already selected. Being, checkbox, user is able to select multiple options. So,if I select e, f, g, the addItemHandler is not triggering and the item is not visible to the user. Is there a way to trigger or associate an event for checkbox in such a way that along with any options if any of e, f, g is selected, the other item should be made visible and shown in the screen. Can anyone help me on this.....