--
---
You received this message because you are subscribed to the Google Groups "web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to web2py+un...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
So the star rating is definitely not making its way back to the server. I'm guessing it should look like the following:<Storage {'rating': '5', '_formkey': '7c32617c-2136-4d8d-ad54-ea7ae454e551', '_formname': 'song/create', 'title': 'Thriller'}>
{{=SCRIPT("""
jQuery("form").submit(
function(){
jQuery("[name=rating]").removeAttr("disabled");
}
);
""")}}
Here is the code that worked for me when added to the view. ...