We made a little widget that could be used standalone or inside of Ext forms for one of our applications. We thought that the Ext community might benefit from it! Always glad to give back, download at this URL:
http://saeven.net/ext
Feedback/bug reports always appreciated!
Sample usage (standalone):
Code:
var stars = new Ext.ux.StarRating( 'voting', { totalStars: 10, average: 6.5 } );
stars.on( 'rate', function( o, x ){ Ext.get( 'vote_selected' ).update( 'rate event fired: ' + x ); } );
or
Code:
someform.add( new Ext.ux.StarRating( { totalStars: 5 } );
Cheers.
Alex