i have a Rails app in which I am using jquery Raty plugin i have included Raty in gemfile
gem 'jquery-raty-rails', github: 'bmc/jquery-raty-rails'
and in the application.js i have included
//= require jquery.raty
//= require jquery.raty.min
and i have included this in the javascript
$('#star-log').raty({
target : '#hint-log',
targetType : 'score',
targetKeep : true
});
$('#star-comm').raty({
target : '#hint-comm',
targetType : 'score',
targetKeep : true
});
$('#star-tech').raty({
target : '#hint-tech',
targetType : 'score',
targetKeep : true
});
$('#star-overall').raty({
target : '#hint-overall',
targetType : 'score',
targetKeep : true,
readOnly : true
});
the view for the stars rating is given as
<div class="row">
<div class=" col s12 m6 logical">
<label>Logical & Analytical Skills</label>
<div id="star-log" > </div>
<%= f.text_field :log_skill, :id=>'hint-log' %>
</div>
<div class=" col s12 m6">
<label>Communication skills</label>
<div id="star-comm" ></div>
<%= f.text_field :comm_skill, :id=>'hint-comm' %>
</div>
</div>
<div class="row">
<div class=" col s12 m6">
<label>Technical Skills</label>
<div id="star-tech" id="star-tech"></div>
<%= f.text_field :log_skill, :id=>'hint-tech' %>
</div>
<div class="col s12 m6">
<label >Overall Rating</label>
<div id="star-overall" id="star-read"></div>
<%= f.text_field :log_skill, :id=>'hint-overall' %>
</div>
</div>
I have 4 fields for star rating given as
- Logical & Analytical Skills
- communication skills
- technical skills
- overall skill
so now in first three star rate the user will rate and by those ratings the overall skill(which is read only) will be updated while rating or we can say overall skill rating will be the average of first three skills and it will automatically being updated and keep showing the stars How can i do this ?