My favorites | Sign in
Project Logo
          
Details: Show all Hide all

Last 30 days

  • Dec 06, 2009
    issue 27 (Problem integrating autosubmit and dynamically set rating va...) commented on by faivre.thomas   -   hello, i had the same problem than roncansan. I called the "select" method into the "callback" method so it unfortunately did an infinite loop, (because select method calls the callback method). what i did is add the argument : "wantCallBack" to the function "select", as a...@alution.com suggest it. So i can avoid select method to do a callback. it's seems to work as well as before on classic ratings. and now i can call the "select" in the callback like in this example : $(document).ready(function() { $('.auto-ajax-starUPD').rating({ callback: function(value, link){ $.ajax({//une fonction ajax qui recalcule le score via page PHP type: "POST", url: "getScore.php",// GET NEW AVERAGE VOTE BY AJAX data: "name=John&location=Boston", success: function(msg){ //alert( "Data Saved: score : " + msg ); $("#fajaxUPD > input").rating('select',msg,false);//UPDATE SELECTED STAR USING THE MSG AJAX $("#fajaxUPD > input").rating('readOnly', true) } }); } }); }); $(selector).rating('select',msg,false); where msg is the value I want to select and false is the value for "wantCallBack" attached file contains my version of select method, if you want try it, you have to replace original method by this one. tell me if it could be usuable for anyone. thanks a lot !
    hello, i had the same problem than roncansan. I called the "select" method into the "callback" method so it unfortunately did an infinite loop, (because select method calls the callback method). what i did is add the argument : "wantCallBack" to the function "select", as a...@alution.com suggest it. So i can avoid select method to do a callback. it's seems to work as well as before on classic ratings. and now i can call the "select" in the callback like in this example : $(document).ready(function() { $('.auto-ajax-starUPD').rating({ callback: function(value, link){ $.ajax({//une fonction ajax qui recalcule le score via page PHP type: "POST", url: "getScore.php",// GET NEW AVERAGE VOTE BY AJAX data: "name=John&location=Boston", success: function(msg){ //alert( "Data Saved: score : " + msg ); $("#fajaxUPD > input").rating('select',msg,false);//UPDATE SELECTED STAR USING THE MSG AJAX $("#fajaxUPD > input").rating('readOnly', true) } }); } }); }); $(selector).rating('select',msg,false); where msg is the value I want to select and false is the value for "wantCallBack" attached file contains my version of select method, if you want try it, you have to replace original method by this one. tell me if it could be usuable for anyone. thanks a lot !
  • Dec 06, 2009
    issue 17 (doesn't work when the radio box was surrounded by <lable>) commented on by IschenkoDV   -   I have the same structure - input inside label (standard form rendering in Zend Framework) and script from svn. The problem persist in Chrome v4.0.249.22 on Linux and Safari 4 on Windows (probably in all WebKit based browsers). The problem is that I can only rate 1, no matter what star I click. All other browsers works perfect.
    I have the same structure - input inside label (standard form rendering in Zend Framework) and script from svn. The problem persist in Chrome v4.0.249.22 on Linux and Safari 4 on Windows (probably in all WebKit based browsers). The problem is that I can only rate 1, no matter what star I click. All other browsers works perfect.
  • Nov 25, 2009
    r35 ([No log message]) committed by diego.alto   -   [No log message]
    [No log message]
  • Nov 25, 2009
    r34 ([No log message]) committed by diego.alto   -   [No log message]
    [No log message]

Earlier this year

  • Nov 04, 2009
    issue 43 (don't override options) commented on by eduardocrespo   -   I have the same problem. The cancel, cancelValue options and the callback function doesn't seems to work. I'm using 3.12 version of the plugin and 1.3.2 version of jQuery. Any ideas?
    I have the same problem. The cancel, cancelValue options and the callback function doesn't seems to work. I'm using 3.12 version of the plugin and 1.3.2 version of jQuery. Any ideas?
  • Nov 04, 2009
    issue 33 (Hiding the cancel button ?) commented on by tasoula.charilaou   -   also adding the required: 'hide' option does the same thing: $('.vote').rating({ required: 'hide', });
    also adding the required: 'hide' option does the same thing: $('.vote').rating({ required: 'hide', });
  • Oct 22, 2009
    issue 44 (mixed split/half) reported by grg2gfx   -   Is it possible to configure voting with whole stars (no split) but displaying results splited? thanks
    Is it possible to configure voting with whole stars (no split) but displaying results splited? thanks
  • Oct 20, 2009
    issue 43 (don't override options) reported by nospor   -   This code: jQuery('.star').rating({ cancel: 'Other cancel title' }); doesn't override "cancel" option. Cancel image still have title "Cancel rating". The same problem is with others options... What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.2 On what browser(s) or operating system? BROWSER(S): all
    This code: jQuery('.star').rating({ cancel: 'Other cancel title' }); doesn't override "cancel" option. Cancel image still have title "Cancel rating". The same problem is with others options... What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.2 On what browser(s) or operating system? BROWSER(S): all
  • Oct 10, 2009
    issue 40 (Rating lost after AJAX Postback) commented on by cn...@datasprings.com   -   Any ideas?
    Any ideas?
  • Oct 07, 2009
    issue 42 (caching problem in firefox 3.5.3) reported by disbeli...@gmx.de   -   What steps will reproduce the problem? 1. make a sample html document. include js. 2. insert code <input name="star2" type="radio" class="star"/> <input name="star2" type="radio" class="star"/> <input name="star2" type="radio" class="star"/> <input name="star2" type="radio" class="star" checked="checked" /> <input name="star2" type="radio" class="star"/> 3. show in firefox 4. change "checked" attribute to another input field 5. reload in firefox What is the expected output? What do you see instead? The expected output would be another star marked than before because we changed the "checked" attribute. Reload does not help. You have to clear the cache before - just than it works (or reload via CTRL + F5). Problem does not appear in IE/Chrome/Safari. What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.2 On what browser(s) or operating system? BROWSER(S): Firefox 3.5.3 on Win XP SP3 Please provide a link to where the problem can be observed: URL: - Feel free to provide any additional information below.
    What steps will reproduce the problem? 1. make a sample html document. include js. 2. insert code <input name="star2" type="radio" class="star"/> <input name="star2" type="radio" class="star"/> <input name="star2" type="radio" class="star"/> <input name="star2" type="radio" class="star" checked="checked" /> <input name="star2" type="radio" class="star"/> 3. show in firefox 4. change "checked" attribute to another input field 5. reload in firefox What is the expected output? What do you see instead? The expected output would be another star marked than before because we changed the "checked" attribute. Reload does not help. You have to clear the cache before - just than it works (or reload via CTRL + F5). Problem does not appear in IE/Chrome/Safari. What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.2 On what browser(s) or operating system? BROWSER(S): Firefox 3.5.3 on Win XP SP3 Please provide a link to where the problem can be observed: URL: - Feel free to provide any additional information below.
  • Sep 29, 2009
    issue 41 (hover effects on multiple rating ) reported by phpdeveloper82   -   I have copied the same rating to number of times to rate each categories.. And I need the hover effects ( displaying the title while hover the stars). How can I pass or know the current hover stars group ?
    I have copied the same rating to number of times to rate each categories.. And I need the hover effects ( displaying the title while hover the stars). How can I pass or know the current hover stars group ?
  • Sep 27, 2009
    issue 25 (Cancel rating does not submit form via AJAX) commented on by doraz1686   -   Yes. Create a new action, bind it to the cancel button (when it is created in this plugin) w/the form/value (via context variable). I cannot post the code for it (sorry), but if you know a little bit about jQuery plugins, it should not be too hard. If you have an ajaxSubmit action bound to it, call that (from the new cancel action) with the form. As the plugin sits now, it will post the entire document back to the server, not just the form.
    Yes. Create a new action, bind it to the cancel button (when it is created in this plugin) w/the form/value (via context variable). I cannot post the code for it (sorry), but if you know a little bit about jQuery plugins, it should not be too hard. If you have an ajaxSubmit action bound to it, call that (from the new cancel action) with the form. As the plugin sits now, it will post the entire document back to the server, not just the form.
  • Sep 27, 2009
    issue 25 (Cancel rating does not submit form via AJAX) commented on by jrbe...@mmm.com   -   Anyone have a work around?
    Anyone have a work around?
  • Sep 26, 2009
    issue 40 (Rating lost after AJAX Postback) reported by cn...@datasprings.com   -   What steps will reproduce the problem? 1. Add jQuery Rating control and set radio buttons to be the class of "star". Everything works great. 2. After an ASP.NET ASYNC Postback the rating control changes back to radio buttons. If we call the function again (i.e. jQuery('input[type=radio].star').rating();) then it clears out (doesn't show radio buttons or stars then). This doesn't happen if AJAX isn't installed. What is the expected output? What do you see instead? What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 On what browser(s) or operating system? BROWSER(S): Both IE and FireFox Feel free to provide any additional information below.
    What steps will reproduce the problem? 1. Add jQuery Rating control and set radio buttons to be the class of "star". Everything works great. 2. After an ASP.NET ASYNC Postback the rating control changes back to radio buttons. If we call the function again (i.e. jQuery('input[type=radio].star').rating();) then it clears out (doesn't show radio buttons or stars then). This doesn't happen if AJAX isn't installed. What is the expected output? What do you see instead? What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 On what browser(s) or operating system? BROWSER(S): Both IE and FireFox Feel free to provide any additional information below.
  • Sep 24, 2009
    issue 39 (incorrect 'a' reference when clicking on the cancel button) commented on by martinjmac   -   The problem is that the control.current is null when the user click the cancel button. Here is my lame fix: var myContext; if (control.current == null) myContext = control.cancel; else myContext = control.current; var input = $(control.current ? control.current.data('rating.input') : null); if (control.callback) control.callback.apply(input[0], [input.val(), $('a', myContext)[0]]); // callback event
    The problem is that the control.current is null when the user click the cancel button. Here is my lame fix: var myContext; if (control.current == null) myContext = control.cancel; else myContext = control.current; var input = $(control.current ? control.current.data('rating.input') : null); if (control.callback) control.callback.apply(input[0], [input.val(), $('a', myContext)[0]]); // callback event
  • Sep 24, 2009
    issue 39 (incorrect 'a' reference when clicking on the cancel button) reported by martinjmac   -   What steps will reproduce the problem? 1. Click on the cancel button of the rater What is the expected output? What do you see instead? The event handler is expecting two parameters: 1- The value of the selected star (or in this case cancel) 2- A reference to the link clicked The selector fails in this case and the first link (a) of the document is returned instead. Below is the lines that are breaking var input = $( control.current ? control.current.data('rating.input') : null ); if (control.callback) control.callback.apply(input[0], [input.val(), $('a', control.current)[0]]); // callback event What version of the plugin/jQuery are you using? PLUGIN VERSION: 1.3.2 JQUERY VERSION: 3.12 On what browser(s) or operating system? BROWSER(S): Firefox
    What steps will reproduce the problem? 1. Click on the cancel button of the rater What is the expected output? What do you see instead? The event handler is expecting two parameters: 1- The value of the selected star (or in this case cancel) 2- A reference to the link clicked The selector fails in this case and the first link (a) of the document is returned instead. Below is the lines that are breaking var input = $( control.current ? control.current.data('rating.input') : null ); if (control.callback) control.callback.apply(input[0], [input.val(), $('a', control.current)[0]]); // callback event What version of the plugin/jQuery are you using? PLUGIN VERSION: 1.3.2 JQUERY VERSION: 3.12 On what browser(s) or operating system? BROWSER(S): Firefox
  • Sep 21, 2009
    issue 38 (Suggestion - remove() or destroy()) reported by phazei   -   A destroy function would be great. I'm using $().clone() and before I copy radio buttons, I need to remove the originals copy of the plugin. Currently I'm using find on the clone to remove the class, make the radio buttons visible, and delete star-rating-control. Then I need to recreate it.
    A destroy function would be great. I'm using $().clone() and before I copy radio buttons, I need to remove the originals copy of the plugin. Currently I'm using find on the clone to remove the class, make the radio buttons visible, and delete star-rating-control. Then I need to recreate it.
  • Sep 20, 2009
    issue 37 (Selected star not retained after postback) reported by abhibp   -   Thanks for the plugin. I have used ' auto-submit-star ' class to get postback on star click.After postback the selected star is not getting displayed.Instead of that all stars remains unselected. I hope you can give me a solution for this. Cheers, Abhilash
    Thanks for the plugin. I have used ' auto-submit-star ' class to get postback on star click.After postback the selected star is not getting displayed.Instead of that all stars remains unselected. I hope you can give me a solution for this. Cheers, Abhilash
  • Sep 15, 2009
    issue 36 (delete icon) reported by igor.gomozov   -   Hello, Is it possible to remove/hide delete icon? I don't need it... I disable the rating directly after use clicks on the stars.. Thanks, Igor.
    Hello, Is it possible to remove/hide delete icon? I don't need it... I disable the rating directly after use clicks on the stars.. Thanks, Igor.
  • Sep 06, 2009
    issue 35 (Radio Buttons displayed momentarily when displaying a lot of...) reported by dickyjohan   -   What steps will reproduce the problem? 1. Display a html page that heavily uses star rating plugins (about 15 of them) 2. A set of radio buttons are displayed first, and then the stars later appear What is the expected output? What do you see instead? I would like to just display the stars, instead of having the radio buttons flickering for a moment, is it possible? This happens when I use Ajax to load all the controls. What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.2 On what browser(s) or operating system? BROWSER(S): Opera, Firefox, Mac, Windows Please provide a link to where the problem can be observed: URL: sign up for a free account and then view this page: http://www.hip10.com/l/17 Feel free to provide any additional information below.
    What steps will reproduce the problem? 1. Display a html page that heavily uses star rating plugins (about 15 of them) 2. A set of radio buttons are displayed first, and then the stars later appear What is the expected output? What do you see instead? I would like to just display the stars, instead of having the radio buttons flickering for a moment, is it possible? This happens when I use Ajax to load all the controls. What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.2 On what browser(s) or operating system? BROWSER(S): Opera, Firefox, Mac, Windows Please provide a link to where the problem can be observed: URL: sign up for a free account and then view this page: http://www.hip10.com/l/17 Feel free to provide any additional information below.
  • Sep 02, 2009
    issue 34 (Random display bug ) reported by alexandr...@wanadoo.fr   -   What steps will reproduce the problem? 1. Random display bug 2 . 3. What is the expected output? What do you see instead? You can see the bug : http://img137.imageshack.us/img137/365/sanstitre1c.jpg width : 832px ??? What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.2 On what browser(s) or operating system? BROWSER(S): Mozilla 3.5.2 Please provide a link to where the problem can be observed: URL: http://gt5rs.com/dev/rating.php Screen : http://img137.imageshack.us/img137/365/sanstitre1c.jpg Feel free to provide any additional information below.
    What steps will reproduce the problem? 1. Random display bug 2 . 3. What is the expected output? What do you see instead? You can see the bug : http://img137.imageshack.us/img137/365/sanstitre1c.jpg width : 832px ??? What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.2 On what browser(s) or operating system? BROWSER(S): Mozilla 3.5.2 Please provide a link to where the problem can be observed: URL: http://gt5rs.com/dev/rating.php Screen : http://img137.imageshack.us/img137/365/sanstitre1c.jpg Feel free to provide any additional information below.
  • Aug 19, 2009
    issue 25 (Cancel rating does not submit form via AJAX) commented on by briggs.earle   -   Hs this been fixed? It's a pretty basic bug.
    Hs this been fixed? It's a pretty basic bug.
  • Aug 17, 2009
    issue 33 (Hiding the cancel button ?) commented on by TauAlexandr   -   add to css div.rating-cancel, div.rating-cancel a { display:none; width:0;height:0;overflow:hidden; }
    add to css div.rating-cancel, div.rating-cancel a { display:none; width:0;height:0;overflow:hidden; }
  • Aug 06, 2009
    issue 33 (Hiding the cancel button ?) reported by graphicsxp   -   Hi, I was wondering if there's any ways of not showing the cancel button ? I don't need it. Thanks
    Hi, I was wondering if there's any ways of not showing the cancel button ? I don't need it. Thanks
  • Aug 03, 2009
    issue 27 (Problem integrating autosubmit and dynamically set rating va...) commented on by a...@alution.com   -   I think what your experiencing is a very similar issue to that which I had. Basically you don't want to set the callback until after you have called select, however this is not really possible (as far as I can tell, but I'm a jquery noob and definitely don't consider javascript as a forte). In anycase, I have attached a patch that can be applied to jquery.rating.js which will add one method called setCallback. So you can do the following: =======8<======= $(":input", "#votes-comment-{{ comment.id }}") .rating() // init, in case your using a custom class. .rating("select", "{{ score.star_rating }}") // select your value .rating("setCallback", myFunction) // set a callback =======>8======= This of course means that you can do the following: =======8<======= function(value, link) { var form = this.form; $.ajax({ type: "POST", url: "description.aspx/newScore", data: "{'score':'" + value + "','place':'" + $("#title").html() + "'}", contentType: "application/json; charset=utf-8", dataType: "json", success: function(msg, score) { $(prefix + "LRating").html(msg.d); $(":input", "#" + $(form).attr('id')) .rating("setCallback", null) .rating("select", score + "") .rating("setCallback", vote); } }); } =======>8======= The code attaches the click action to the select which is fine, however all I'm trying to do here is run the select without actioning the callback. Perhaps it would be better to have a param for the select call that specifies not to run the callback?
    I think what your experiencing is a very similar issue to that which I had. Basically you don't want to set the callback until after you have called select, however this is not really possible (as far as I can tell, but I'm a jquery noob and definitely don't consider javascript as a forte). In anycase, I have attached a patch that can be applied to jquery.rating.js which will add one method called setCallback. So you can do the following: =======8<======= $(":input", "#votes-comment-{{ comment.id }}") .rating() // init, in case your using a custom class. .rating("select", "{{ score.star_rating }}") // select your value .rating("setCallback", myFunction) // set a callback =======>8======= This of course means that you can do the following: =======8<======= function(value, link) { var form = this.form; $.ajax({ type: "POST", url: "description.aspx/newScore", data: "{'score':'" + value + "','place':'" + $("#title").html() + "'}", contentType: "application/json; charset=utf-8", dataType: "json", success: function(msg, score) { $(prefix + "LRating").html(msg.d); $(":input", "#" + $(form).attr('id')) .rating("setCallback", null) .rating("select", score + "") .rating("setCallback", vote); } }); } =======>8======= The code attaches the click action to the select which is fine, however all I'm trying to do here is run the select without actioning the callback. Perhaps it would be better to have a param for the select call that specifies not to run the callback?
  • Aug 03, 2009
    issue 27 (Problem integrating autosubmit and dynamically set rating va...) commented on by a...@alution.com   -   I to am have a very similar issue to this. It would be nice to be able to be able to call select and temporarily disable the callback so that upon ajax callback you can set the value without the callback continuously getting called.
    I to am have a very similar issue to this. It would be nice to be able to be able to call select and temporarily disable the callback so that upon ajax callback you can set the value without the callback continuously getting called.
  • Aug 03, 2009
    issue 27 (Problem integrating autosubmit and dynamically set rating va...) commented on by wattewan   -   I to am have a very similar issue to this. It would be nice to be able to be able to call select and temporarily disable the callback so that upon ajax callback you can set the value without the callback continuously getting called.
    I to am have a very similar issue to this. It would be nice to be able to be able to call select and temporarily disable the callback so that upon ajax callback you can set the value without the callback continuously getting called.
  • Jul 20, 2009
    issue 17 (doesn't work when the radio box was surrounded by <lable>) commented on by james.olney   -   I second this. without the <label> tag it is fine, however with this code doesn't work in firefox 3.5.1. but does in IE 6, 7. despite this - Great plugin - thanks for all the work!
    I second this. without the <label> tag it is fine, however with this code doesn't work in firefox 3.5.1. but does in IE 6, 7. despite this - Great plugin - thanks for all the work!
  • Jul 19, 2009
    issue 32 (Binding a control input text ?) reported by inctor   -   Hi guys, I was wondering, after googling for quite a while now, i still havent found what i was looking for. I am looking for a script, for when i click on the star, i want the value to be sent to a textbox. For further usage. Any suggestions on how to accomplish that.?
    Hi guys, I was wondering, after googling for quite a while now, i still havent found what i was looking for. I am looking for a script, for when i click on the star, i want the value to be sent to a textbox. For further usage. Any suggestions on how to accomplish that.?
  • Jul 17, 2009
    issue 28 (star-ratings don't work in IE?) commented on by gregkasm...@yahoo.com   -   If you have align set it will show the values. examples that will break it and show the values of the radio: <td align='right'> {Code} </td> <div align='right'> {Code} </div>
    If you have align set it will show the values. examples that will break it and show the values of the radio: <td align='right'> {Code} </td> <div align='right'> {Code} </div>
  • Jul 17, 2009
    r33 ([No log message]) committed by diego.alto   -   [No log message]
    [No log message]
  • Jul 17, 2009
    r32 ([No log message]) committed by diego.alto   -   [No log message]
    [No log message]
  • Jun 29, 2009
    issue 31 (Stars are displayed vertically down on the screen in Chrome ...) reported by joshwint...@Hotmail.com   -   What steps will reproduce the problem? 1. Run a demo page wihout the jquery.chili-toolbar.pack.js plugin at the top 2. Set parameters to split the stars into 2 3. Run it in Chrome (my version is 2.0) What is the expected output? What do you see instead? Expected output are stars displaying horizontal across the screen. What I see instead is 1 of 5 page refreshes, stars are displayed vertically down on the screen. What version of the plugin/jQuery are you using? PLUGIN VERSION: v3.12 JQUERY VERSION: v1.3.2 On what browser(s) or operating system? BROWSER(S): Chrome 2.0 Please provide a link to where the problem can be observed: URL: Sorry don't have web space to display the link, but spent 6 hours trying to debug the problem today. The above steps will break it every time in Chrome. Feel free to provide any additional information below.
    What steps will reproduce the problem? 1. Run a demo page wihout the jquery.chili-toolbar.pack.js plugin at the top 2. Set parameters to split the stars into 2 3. Run it in Chrome (my version is 2.0) What is the expected output? What do you see instead? Expected output are stars displaying horizontal across the screen. What I see instead is 1 of 5 page refreshes, stars are displayed vertically down on the screen. What version of the plugin/jQuery are you using? PLUGIN VERSION: v3.12 JQUERY VERSION: v1.3.2 On what browser(s) or operating system? BROWSER(S): Chrome 2.0 Please provide a link to where the problem can be observed: URL: Sorry don't have web space to display the link, but spent 6 hours trying to debug the problem today. The above steps will break it every time in Chrome. Feel free to provide any additional information below.
  • Jun 22, 2009
    issue 30 (Features) reported by steve.sanyal   -   Hi, Great plugin. I'd just love to suggest a few additional features: 1) Text that can easily be positioned around the star rating (eg: "Based on 10 ratings"). I imagine this would be easily implemented using a label. 2) Ability to hyperlink when clicking on the rating. This of course would only make sense for disabled/readOnly ratings. 3) Ability to change the color of the star which is displayed when the rating is picked. Most of my ratings are readonly, and I'd prefer to show a gold color. I can do this myself of course by modifying the gif accordingly. I'll have to implement this for my own needs, but I'm not a JS or JQuery guru so I'm sure you can do it much better! Some of the Prototype plugins have these feature sthough if you need to see some examples. http://www.webresourcesdepot.com/prototype-star-rating-library-starbox/ Cheers, Steve
    Hi, Great plugin. I'd just love to suggest a few additional features: 1) Text that can easily be positioned around the star rating (eg: "Based on 10 ratings"). I imagine this would be easily implemented using a label. 2) Ability to hyperlink when clicking on the rating. This of course would only make sense for disabled/readOnly ratings. 3) Ability to change the color of the star which is displayed when the rating is picked. Most of my ratings are readonly, and I'd prefer to show a gold color. I can do this myself of course by modifying the gif accordingly. I'll have to implement this for my own needs, but I'm not a JS or JQuery guru so I'm sure you can do it much better! Some of the Prototype plugins have these feature sthough if you need to see some examples. http://www.webresourcesdepot.com/prototype-star-rating-library-starbox/ Cheers, Steve
  • Jun 02, 2009
    issue 29 (cancel rating button does not work with auto-submit-stars) reported by bopland   -   I'm trying to implement auto submit rating stars. It works fine for stars but when I try to cancel the rating it does submit the form to wrong URL, namely to current page URL instead of form action. The trouble is that callback function recieves wrong 'this' parameter when cancel rating button is clicked. I expected to use this.form.submit() to cancel ratings using form action URL, instead the current page was reloaded. PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.1 On what browser(s) or operating system? BROWSER(S): Firefox 2, 3 Thanks for maintaining this plugin. Best, Nikita
    I'm trying to implement auto submit rating stars. It works fine for stars but when I try to cancel the rating it does submit the form to wrong URL, namely to current page URL instead of form action. The trouble is that callback function recieves wrong 'this' parameter when cancel rating button is clicked. I expected to use this.form.submit() to cancel ratings using form action URL, instead the current page was reloaded. PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.1 On what browser(s) or operating system? BROWSER(S): Firefox 2, 3 Thanks for maintaining this plugin. Best, Nikita
  • May 21, 2009
    issue 28 (star-ratings don't work in IE?) commented on by novus...@gmail.com   -   This appears to be an issue with the CSS, because I can get the same result in firefox if I don't include the CSS.
    This appears to be an issue with the CSS, because I can get the same result in firefox if I don't include the CSS.
  • May 21, 2009
    issue 28 (star-ratings don't work in IE?) reported by novus...@gmail.com   -   What steps will reproduce the problem? 1. USE IE 2. Import Jquery library, star-rating plugin, and star-rating css 3. Create radio buttons What is the expected output? What do you see instead? the expected output is what we see in firefox, what I get instead is a list of the radio button values. What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.2 On what browser(s) or operating system? BROWSER(S): IE Please provide a link to where the problem can be observed: URL: http://tiberriver.com/index.cfm/fuseaction/home.viewReview/review/17 Feel free to provide any additional information below. It works in IE on the demo page, so I must be doing something wrong. Can anyone help?
    What steps will reproduce the problem? 1. USE IE 2. Import Jquery library, star-rating plugin, and star-rating css 3. Create radio buttons What is the expected output? What do you see instead? the expected output is what we see in firefox, what I get instead is a list of the radio button values. What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.3.2 On what browser(s) or operating system? BROWSER(S): IE Please provide a link to where the problem can be observed: URL: http://tiberriver.com/index.cfm/fuseaction/home.viewReview/review/17 Feel free to provide any additional information below. It works in IE on the demo page, so I must be doing something wrong. Can anyone help?
  • May 21, 2009
    issue 27 (Problem integrating autosubmit and dynamically set rating va...) reported by roncansan   -   Thanks for this plugin. I'm having trouble making the plugin auto postback and at the same time dynamically selecting the value. Here is what I have. <script type="text/javascript" charset="utf-8"> $(':radio.star').rating({ callback: function(value, link) { $.ajax({ type: "POST", url: "description.aspx/newScore", data: "{'score':'" + value + "','place':'" + $("#title").html() + "'}", contentType: "application/json; charset=utf-8", dataType: "json", success: function(msg) { $(prefix + "LRating").html(msg.d); } }); } }); $(document).ready(function() { $(":radio.star").rating('select',3); }); </script> This works, but on this code $(document).ready(function() { $(":radio.star").rating('select',3); }); It makes 5 postbacks to the server. Any insight Thanks
    Thanks for this plugin. I'm having trouble making the plugin auto postback and at the same time dynamically selecting the value. Here is what I have. <script type="text/javascript" charset="utf-8"> $(':radio.star').rating({ callback: function(value, link) { $.ajax({ type: "POST", url: "description.aspx/newScore", data: "{'score':'" + value + "','place':'" + $("#title").html() + "'}", contentType: "application/json; charset=utf-8", dataType: "json", success: function(msg) { $(prefix + "LRating").html(msg.d); } }); } }); $(document).ready(function() { $(":radio.star").rating('select',3); }); </script> This works, but on this code $(document).ready(function() { $(":radio.star").rating('select',3); }); It makes 5 postbacks to the server. Any insight Thanks
  • May 19, 2009
    issue 25 (Cancel rating does not submit form via AJAX) commented on by aron.duby   -   This appears to be an issue with the data being passed to the callback for the cancel button. The callback is receiving value as an empty string and link as what appears to be the first link that is in the DOM.
    This appears to be an issue with the data being passed to the callback for the cancel button. The callback is receiving value as an empty string and link as what appears to be the first link that is in the DOM.
  • May 12, 2009
    r31 ([No log message]) committed by diego.alto   -   [No log message]
    [No log message]
  • May 12, 2009
    r30 ([No log message]) committed by diego.alto   -   [No log message]
    [No log message]
  • May 12, 2009
    r29 ([No log message]) committed by diego.alto   -   [No log message]
    [No log message]
  • May 12, 2009
    r28 (Re-structured documentation delivery) committed by diego.alto   -   Re-structured documentation delivery
    Re-structured documentation delivery
  • May 06, 2009
    issue 26 (Alignment Issue inside a table) changed by diego.alto   -   So this isn't an alignment issue then? Sounds like you are seeing <label>s. Can you post your code?
    Status: Unidentified
    Owner: diego.alto
    So this isn't an alignment issue then? Sounds like you are seeing <label>s. Can you post your code?
    Status: Unidentified
    Owner: diego.alto
  • May 05, 2009
    issue 26 (Alignment Issue inside a table) reported by cullenburton   -   What steps will reproduce the problem? 1. Create a table with one row and one cell. 2. Set the Cell alignment = right. 3. Create form with star rating plug-in. What is the expected output? What do you see instead? I would expect the Star images to be the only thing visible but the values of each input radio are being shown under each star. What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.1.2 JQUERY VERSION: 1.2.6 On what browser(s) or operating system? BROWSER(S): IE-7 and FF3 Please provide a link to where the problem can be observed: URL: (cannot provide) Feel free to provide any additional information below.
    What steps will reproduce the problem? 1. Create a table with one row and one cell. 2. Set the Cell alignment = right. 3. Create form with star rating plug-in. What is the expected output? What do you see instead? I would expect the Star images to be the only thing visible but the values of each input radio are being shown under each star. What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.1.2 JQUERY VERSION: 1.2.6 On what browser(s) or operating system? BROWSER(S): IE-7 and FF3 Please provide a link to where the problem can be observed: URL: (cannot provide) Feel free to provide any additional information below.
  • Apr 30, 2009
    issue 25 (Cancel rating does not submit form via AJAX) reported by doraz1686   -   What steps will reproduce the problem? 1. Create form with star rating plug-in. 2. Set callback on these features to use '$(this.form).ajaxSubmit()' 3. Click on the 'Cancel Rating' button 4. The form is not submitted to the server (most likely because of the jquery selector used should not be $(this.form) for the cancel rating button). What is the expected output? What do you see instead? Form to be submitted via AJAX Form Plugin. What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.32 JQUERY FORM VERSION: 2.25 On what browser(s) or operating system? BROWSER(S): IE, Firefox Please provide a link to where the problem can be observed: URL: (cannot provide) Feel free to provide any additional information below.
    What steps will reproduce the problem? 1. Create form with star rating plug-in. 2. Set callback on these features to use '$(this.form).ajaxSubmit()' 3. Click on the 'Cancel Rating' button 4. The form is not submitted to the server (most likely because of the jquery selector used should not be $(this.form) for the cancel rating button). What is the expected output? What do you see instead? Form to be submitted via AJAX Form Plugin. What version of the plugin/jQuery are you using? PLUGIN VERSION: 3.12 JQUERY VERSION: 1.32 JQUERY FORM VERSION: 2.25 On what browser(s) or operating system? BROWSER(S): IE, Firefox Please provide a link to where the problem can be observed: URL: (cannot provide) Feel free to provide any additional information below.
  • Apr 27, 2009
    issue 24 (half rating not working with callback ?) changed by diego.alto   -   You need to use the metadata plugin if you want to configure the plugin via the class property. Otherwise do this: $('.auto-submit-star').rating({ half: true, // etc...
    Status: Invalid
    Owner: diego.alto
    You need to use the metadata plugin if you want to configure the plugin via the class property. Otherwise do this: $('.auto-submit-star').rating({ half: true, // etc...
    Status: Invalid
    Owner: diego.alto
  • Apr 27, 2009
    issue 24 (half rating not working with callback ?) reported by syxxxx   -   What steps will reproduce the problem? create input <input class="auto-submit-star {half:true}" type="radio" name="rating" value="1" title="1" /> or {split:2} and $('.auto-submit-star').rating({ callaback What is the expected output? What do you see instead? full stars rating in place of half stars What version of the plugin/jQuery are you using? PLUGIN VERSION: jQuery Star Rating Plugin v3.12 - 2009-04-16 JQUERY VERSION: jQuery JavaScript Library v1.3.2 Revision: 6246 jquery.form.js?2.25 On what browser(s) or operating system? BROWSER(S): firefox 3.0.9 Linux (Ubuntu/gnome) Please provide a link to where the problem can be observed: URL: http://fp2006.free.fr/1.html Tanks and sorry if is not a real bug
    What steps will reproduce the problem? create input <input class="auto-submit-star {half:true}" type="radio" name="rating" value="1" title="1" /> or {split:2} and $('.auto-submit-star').rating({ callaback What is the expected output? What do you see instead? full stars rating in place of half stars What version of the plugin/jQuery are you using? PLUGIN VERSION: jQuery Star Rating Plugin v3.12 - 2009-04-16 JQUERY VERSION: jQuery JavaScript Library v1.3.2 Revision: 6246 jquery.form.js?2.25 On what browser(s) or operating system? BROWSER(S): firefox 3.0.9 Linux (Ubuntu/gnome) Please provide a link to where the problem can be observed: URL: http://fp2006.free.fr/1.html Tanks and sorry if is not a real bug
  • Apr 16, 2009
    issue 23 (Multiple reuse results in hidden form elements) Status changed by diego.alto   -   Done! Please follow the twitter account for future updates: http://twitter.com/fyneworks
    Status: Done
    Done! Please follow the twitter account for future updates: http://twitter.com/fyneworks
    Status: Done
  • Apr 16, 2009
    r27 (v3.12 released - important fixes for ajax/dynamic implementa...) committed by diego.alto   -   v3.12 released - important fixes for ajax/dynamic implementations
    v3.12 released - important fixes for ajax/dynamic implementations
 
Hosted by Google Code