My Question ;- How to Modify Product Rating Multiple Time as per our need against the Products
But What i want
I want the below code to be implemented like after looking the given link (http://www.learnkenticocms.com/Video-Library/Videos/Web-Part-Overview.aspx)
Please see the below section ie.
Comments
below
Leave Message
below
Your Rating:->
In the your Rating option, we can modify as many time as we required
Please modify the below code as per my requirement :-
<%@ Register Src="~/CMSAdminControls/ContentRating/RatingControl.ascx" TagName="RatingControl" TagPrefix="cms" %>
<div class="newsItemDetail">
<h1>
<%# Eval("NewsTitle") %></h1>
<div class="NewsSummary">
<%# IfEmpty(Eval("NewsTeaser"), "", GetImage("NewsTeaser")) %>
<div class="NewsContent">
<div class="Date">
<%# GetDateTime("NewsReleaseDate", "d") %>
</div>
<div class="TextContent">
<%# Eval("NewsSummary") %>
</div>
</div>
<div
class="Clearer">
</div>
</div>
<div class="NewsBody">
<div class="TextContent">
<%# Eval("NewsText") %>
</div>
<cms:RatingControl ID="elemRating" runat="server" Enabled="true" RatingType="Stars" ExternalValue='
<%# Convert.ToString(CMS.GlobalHelper.ValidationHelper.GetDouble(Eval("DocumentRatingValue"), 0)/((CMS.GlobalHelper.ValidationHelper.GetDouble(Eval("DocumentRatings"), 0) == 0?1:CMS.GlobalHelper.ValidationHelper.GetDouble(Eval("DocumentRatings"), 1)))) %>' />
</div>
</div>
Help me.
Waiting.....