The rating component layout/functionality breaks when its precision configuration is set to "half" and the defined Kendo culture is "de-DE".
numberFormat: {
pattern: ["-n"],
decimals: 2,
",": ".",
".": ",",
is changed to this:
numberFormat: {
pattern: ["-n"],
decimals: 2,
",": "'",
".": ",",
The issue is no more reproducing
The layout of the rating component with "half" precision doesn't visualize the "half" precision and the value of the current rating is displayed without a decimal point
The expected behavior can be observed in this Dojo example