|
I figured I'd make the argument numeric. Rank this season's contestants on a 1-10 scale in the following categories: Physical includes: performance in activity-based challenges (and public perception as a challenge threat), the amount of sheer gruntwork...
Started by Estee on
, 13 posts
by 5 people.
Answer Snippets (Read the full thread at realitytvworld):
Pretty unfair to rate the early boots considering they had little.
Estee's list? I was also wondering.
|
|
I have this jQuery code that handles hovering over rating stars, when you hover they glow as they're meant to. Problem is, once you've taken your cursor out, it still displays what your cursor was on (and doesn't show the original rating). How can I make...
Started by Jack W-H on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
$('[class^=star_]').mouseenter( function.
RemoveClass("hover");
UPDATE:
The selected rating is stored in the ratings_x element's data() , and is retrieved when you leave the ratings area.
|
|
I'd like to give my users the ability to rate each item on the site from 1 to 5. They also must be able to go back and revise their rating for each item as they please. Lastly, the item's page will display the average-to-date of all user ratings when ...
Started by Andrew Heath on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You will get an error....
That way a user can only rate an item once.
Instead of having an ID field in the table you proposed, put the key on ITEM and USERID .
One user can rate many items and one item can be rated by many users.
Items.
|
Ask your Facebook Friends
|
I used to rate songs in Windows Media Player simply clicking the stars near each song. Quick and easy.
For some reason, this does not work anymore in WMP on Windows 7 Ultimate x64 (RTM from MSDN). When I click on the starts, the new rating is not saved...
Started by Dario Solera on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I'll give that a shot; I had the same problem. .
I somehow managed to get ratings working again by deleting all .wmdb files found in:
C:\Users\< the library, but ratings started working again.
|
|
Hi, how can create ratings using UIPicker, eg. 0-star to 5-star, how this can be done, anyone can give sample code please
thanks
Started by Apache on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIPickerView%5FClass/Reference/UIPickerView.html
As Ian Henry pointed out, the reference describes how you can set each component of a UIPicker to use images rather than text, using... .
|
|
Its not rocket science
Started by SydneyHedgehog on
, 13 posts
by 12 people.
Answer Snippets (Read the full thread at digitalspy):
Whether they would follow the patterns of other countries.
No way of knowing how the ratings would go (eg.
|
|
Let's say I create a site to rank doctors/lawyers based on reviews/ratings by people who have used their services.
How do I prevent that constituency from logging on, creating fake accounts and adding fake reviews/ratings to say how awesome they are in...
Started by Karl on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at superuser):
But the question really becomes, how much effort do you want to spend? How can you validate who someone is? Your going to need to have people register... .
As the first answer states, you can't guarantee that someone isn't going to attempt to "game" your site.. .
|
|
Continue NHL playoff discussion and bandwagoning here. (Previous Official Thread)
Credit and big thanks to Quick for the image graphics.
Credit to comedy duo DopeyFish and Cake Boss for the thread title. Last edited by ZeroGravity; Today at 03:11 AM ....
Started by ZeroGravity on
, 49 posts
by 20 people.
Answer Snippets (Read the full thread at neogaf):
Yes sir! How bad are those Penguins, eh? Originally Posted by gcubed : How bad are those Penguins, eh? Is this still going on? Originally Posted by yankeehater : But they won a game 10... .
Habs in 201 5! Thankfully that 10% attendance is the best of them .
|
|
I have a table of ratings that stores a user ID, object ID, and a score (+1 or -1). Now, when I want to display a list of objects with their total scores, the number of +1 votes, and the number of -1 votes.
How can I do this efficiently without having...
Started by David on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Group then -1 else 0) downvotes, sum(score) from ratings group by object_id
Perhaps something like.
Then 1 else 0 end) 'negative' , objectId from ratings where objectId = @objectId ...
|
|
A WordPress build i am working on wants to pull in stories from rss feeds, and then allow users of the site to add comments and star ratings to each one. It doesn't really seem like the correct useage of rss to me, but is this sort of thing possible without...
Started by mroggle on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This means storing some unique 'story' identifier so you can retrieve it later and calculate its ratings and comments.
At the very least you need some way of associating ratings with a particular story.
|