Hi,
I am loading the rating control with nothing selected. I want to enable a DIV based on the user selecting a rating value;
i have tried the following but with no luck; i have also tried the change event
$("#igRating2").click(function () { EnableDiv() });
Thank you for your response, but I have changed the flow of my view and this is no longer required.
Hi Michaeltocik,
Can you provide us your sample in order to investigate this issue further and determine the reason for this.
Thank you.
Sincerely,
Georgi Sashev
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
Hi Todor,
I have set the rating control like the custom items example where you can select only one item.
With the code posted the event does not seem to fire as expected. It will fire after I have clicked a few times all over the place, but will not fire after each or every change.
Hi michaeltocik,
Have you tried with, the following:
$(
"igRating2"
).igRating({
valueChange :
function
(evt, ui) {
EnableDiv();
}
});
Hope that helps,
Thanks,