Add New Option for View only of a Rating

Rating Component : Add an Option of “View Only” to allow a rating value to be seen but not changed.

1 Like

If you create a template column or math column (or any computed column that duplicates that rating value), then you can point the rating component to that column and the user won’t be able to change it because computed columns don’t store values.

Other alternatives are to build you own rating component with the Custom AI component, or a bit of html and a rich text component, or an IF column or javascript column to generate the ratings with emoji.

Several ways to recreate something like that, but the easiest would be my first suggestion to use a computed column.

1 Like

You can also give the rating component a CSS class ("static" in the example below) on the component and set pointer-events to none.

Like this:
CleanShot 2026-02-25 at 13.50.56

.static button {
pointer-events: none !important;
}
1 Like

Never tried this! Just tried…it lets you select the computed column but it doesn’t display the value in stars.

1 Like

Ah, good to know. I guess I just assumed it would work since you could select the column. I never fully tested it.