rating

ajax rating script - avoid voting again

What's the best approach to achieve this? With cookies or with IP control? ...

ajaxcontrol toolkit rating control with a value of 4.5

Hi all, Quick question here : How do I get ajax control toolkit rating control to show rating which aren't integers (say 4.5)? Thank you! ...

Software Project Rating?

Sometime within the past month, I came across an informal rating system for software projects. Some of the criteria were: Are daily builds made Is the project under version control Does anyone know what I'm talking about? ...

WordPress GD Star Rating - Review next to Comment

Does anyone know how to program it such that a user's rating gets attached to his comment, rather than independently? I'm attempting to program or set this in GD Star Rating for Wordpress ...

Android RatingBar change star colors

How can i change the star colors and how can i change the size of the stars ? ...

Voting ranking with charts in foreach loop

hi, i have the result of a ranking script in a foreach loop, sorted by the number of votes. is there a way to visualize this with a chart/graph tool? the results are in a table, so each "project" has its own <tr><td>project name</td><td>4</td></tr> i want to display the number of votes eg. 4, in a row underneath the written result. a...

Anroid ratingbar set style from code

I don't see any method like setStyle for class RatingBar, how can i set rating style from code ...

Odd results using jQuery rating plugin

Hi, I use a for loop to generate my stars. I want them split into four so I use class="star {split:4}" I want 5 stars, so I need 20 loops (4splits * 5stars = 20). When it hits 17, it echo's checked="checked" However, in the browser, my script displays 30 stars with 25 and a quarter stars highlighted! Here's my line in PHP <inp...

Rating mechanisms

Is there any place that showcases a bunch of different types of rating systems (like using multiple sliders, star ratings, up/down votes)? I'm trying to get ideas for a better rating system than just up/down (more criteria). (I'm not interested in the backend, but the human/computer interaction part of it). ...

Rails User Rating Another User

Hello, I am working on an application where a user has the ability to leave feedback on another user. Currently, I already have an implemented user model. Is this considered a self referential association? This seems a bit wierd to me (how to set it up through Active Record Associations). How would I go about setting this associatio...

Average rating script

I need to know how to make a rating script for a site. I have a form that submits a rating out of ten to mysql. How would you get the average rating to be displayed from the mysqk column? ---using PHP with mysql ...

Average Rating script

I have asked this once before but i didnt get a very clear answer. I need to know how to make a rating script for a site. I have a form that submits a rating out of ten to mysql. How would you get the average rating to be displayed from the mysql column using php? One person suggested having two tables; one for all the ratings, and one...

Looking for a jQuery plugin : sort of bar rating

Hello, i own a website where users can vote/rate things and i want to improve the poor inputbox (from 1 to 10) to improve visual rendering. I was thinking of a bar, which have 10 ' | ' you can move the cursor from one to ten (it doesn't have to be AJAX because the rating is only added at the end of the form) I'm sure you already seen...

Django Comments and Rating Systems

Hi Folks, I am looking for a blogging and comments system that can smoothly integrate with my Django sites. I've found there is a lot on the Net and got lost a bit, and I don't have much experience on this. Hope you guys can give me some suggestions. Here are the things that I would like to have: Tag Clouds Articles Archive (by month...

Automatic music rating based on listening habits

I've created a Winamp-like music player in Delphi. Not so complex, of course. Just a simple one. But now I would like to add a more complex feature: Songs in the library should be automatically rated based on the user's listening habits. This means: The application should "understand" if the user likes a song or not. And not only wheth...

How to make a smaller RatingBar?

I've added a RatingBar in a layout : <RatingBar android:id="@+id/ratingbar" android:layout_width="wrap_content" android:layout_height="wrap_content" android:numStars="5" android:stepSize="1.0" ></RatingBar> But the default style for the rating bar is too large. I've trie t...

Android -- How to post app rating/comments to Market from within app?

Hello all, This is a simple question. Is there a way to allow users to enter in a comment and or rating for my app from directly within my app and have that data posted back to the Android Market? If so, what would the code for that look like if I used an EditText view to allow user input? If not, then is my only other option directly l...

css Star-rating html problem

Im following a tutorial on this page: http://www.henryhoffman.com/css-star-rating-tutorial.html where the HTML looks like this: <ul class="rating"> <li><a href="#" title="1 Star">1</a></li> <li><a href="#" title="2 Stars">2</a></li> <li><a href="#" title="3 Stars">3</a></li> <li><a href="#" title="4 Stars">4</a></li> <li><a href="#" tit...

[MySQL, InnoDb] Rating place

I'm trying to generate rating place table using following receipt http://stackoverflow.com/questions/1776821/assign-places-in-the-rating-mysql-php but my database is high loaded. I tried not to create table, but use MEMORY TABLE and update it using following SQL query insert into tops (uid) select uid from users order by exp desc; ...

Rating System Database Structure

I have two entity groups. Restaurants and Users. Restaurants can be rated (1-5) by users. And rating fromeach user should be retrievable. Resturant(id, name, ..... , total_number_of_votes, total_voting_points ) User (id, name ...... ) Rating (id, restaurant_id, user_id, rating_value) Do i need to store the avg value so that it need no...