Hi,
I have used dojo.form.rating in my form, I have a computed field and its value is
var html = "<span id=\"MyRating\" " +
"dojoType=\"dojox.form.Rating\" " +
"numStars=\"5\" " +
"value=\"" + document1.getItemValueString("getRating") + "\" ";
if (!document1.isEditable())
html += "disabled=\"true\"";
html += "></span>";
return html;
I want to know two things
1) how to disable onclick event (becoz even in open mode user is able to change the rating stars)
2) how to change mouseover curser.
Thanks In advanced