Completed
Last Updated: 01 Jun 2020 08:12 by ADMIN
Release 2020.R2.SP.next
Andreas
Created on: 08 May 2020 14:34
Category: Rating
Type: Bug Report
2
Rating component's functionality breaks when the "de-DE" culture is set

Bug report

The rating component layout/functionality breaks when its precision configuration is set to "half" and the defined Kendo culture is "de-DE".

  • The issue is related to the defined in the de-DE culture decimal separator
    If the below definition

numberFormat: {
pattern: ["-n"],
decimals: 2,
",": ".",
".": ",",

is changed to this:

numberFormat: {
pattern: ["-n"],
decimals: 2,
",": "'",
".": ",",

The issue is no more reproducing

Reproduction of the problem

  1. Open this Dojo and run it
  2. See the second rating component

Current behavior

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
image

Expected/desired behavior

The expected behavior can be observed in this Dojo example
image

Environment

  • Kendo UI version: 2020.1.406
  • jQuery version: x.y
  • Browser: [all]
0 comments