Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Feb 05, 2013 08:42 AM by incubator138@hotmail.com
Member
34 Points
35 Posts
Feb 01, 2013 12:34 PM|LINK
Hi, how do i put RadRating in the ReadOnly mode when clicked once. the same person should not click on the radrating twice. thank you.
<telerik:RadRating ID="ratingBar" runat="server" AutoPostBack="True" ItemCount="6" OnRate="RadRating1_Rate" Orientation="Horizontal" Precision="Item" Skin="Outlook" Width="100px"> </telerik:RadRating>
280 Points
70 Posts
Feb 05, 2013 08:42 AM|LINK
Hi Chixo
Try the following code snippet to put the RadRating in ReadOnly mode after a single click.
C#:
protected void ratingBar_Rate(object sender, EventArgs e) { ratingBar.ReadOnly = true; }
Thanks
Shinu
chixo
Member
34 Points
35 Posts
RadRating on click
Feb 01, 2013 12:34 PM|LINK
Hi,
how do i put RadRating in the ReadOnly mode when clicked once. the same person should not click on the radrating twice. thank you.
<telerik:RadRating ID="ratingBar" runat="server" AutoPostBack="True" ItemCount="6" OnRate="RadRating1_Rate" Orientation="Horizontal" Precision="Item" Skin="Outlook" Width="100px"> </telerik:RadRating>incubator138...
Member
280 Points
70 Posts
Re: RadRating on click
Feb 05, 2013 08:42 AM|LINK
Hi Chixo
Try the following code snippet to put the RadRating in ReadOnly mode after a single click.
C#:
protected void ratingBar_Rate(object sender, EventArgs e) { ratingBar.ReadOnly = true; }Thanks
Shinu