Hello!
I need to register any user selection on a rating panel. I use event valueChange when an user clicks on a rating panel. If an user set the same value which was defined by default, the event valueChange didn't fire because value didn't change really. In this case I can't register rating which an user set. How can I resolve this problem?
Thanks in advance!
Hello,
Thank you for contacting Infragistics!
If you need an event to fire to be able to achieve what you are trying you can use the jQuery click event:
http://api.jquery.com/click/
Then to get the value use can use the API “value” method:
http://help.infragistics.com/jQuery/2014.1/ui.igrating#methods:value
Please let me know if you have any further questions concerning this matter.
I am following up to see if the information provided has resolved this matter.
Please let me know if I may be of further assistance with this matter.
I used click method which you proposed and property _i in elements to resolve my task.Thanks for your response!