Has anyone worked with the Rating (0-5) column type in a Nintex Form? It displays fine in the list view, but Nintex Forms doesn't even recognize the column exists.
Since this appears to be a bug or feature that no longer works with this type of column, are there known workarounds or code snippets available to display star ratings in a form?
Solved! Go to Solution.
did you find a workaround/solution?
I have done this by adding star ratings html code in rich text box and css in custom css in form settings. You can refer html and css code from below link-
Star Color change on mouse hover action
And to get count of no of star ratings, on submit action. you can refer below code
NWF$("input[name='group-1']:checked").each( function () { alert(NWF$(this).val()); });
Cassy - you can try using below apporach
How to implement more than one rating?
I was able to implement a hybrid workaround in SP2013 based on the provided solution but does not use the OOTB rating column.
1. I created a choice column "Star Rating" and entered following choices in this exact order: 5,4,3,2,1
2. In Nintex set CSS class on the choice column "Star Rating" to acidjs-rating-stars
3. Then added the folllowing to Form Settings Custom CSS:
Shortcoming here is that only the selected star highlights rather than all less than star selected. The other solution is, as someone else noted, instead of using a choice column use a rich text control and apply custom html as noted earlier in this same thread. But shortcoming here is the value is not submitted in the form.
Anyone else have a better solution or workaround for this?