Hello Vamsidhar,
I apologize for the late response. I will need a little more information on what radio button controls you are trying to attach the changed event to. Are you using in-line HTML radio buttons, a Sitefinity widget radio button, or The Portal Connector's Yes/No widget?
If you are using the Portal Connector's control or one of Sitefinity's widgets there is an API in place to properly manage the events of the control.
The RulesManager control already interacts with this API for you and will allow you to attach the "change" event to any Portal Connector widget.
If you are interacting with a widget directly refer to the API
here on how to attach events to the "RadButton" control if the widget is utilizing that.
If you are using just a standard HTML input controls with jQuery, try binding the change event using something like this:
$("input[name=radioGroupName]:radio").change(function () { /* Code Here */ });
Last modified on 16 May 2017 12:05 by Missing user