Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Decimal separator in German Showcase

    Hi Isomorphic,

    please see this modified sample (v11.1p_2018-11-01, includes locale in link, show context menu of ListGrid to see that it is working).
    Code:
    isc.ListGrid.create({
        ID:"dsListGrid", 
        width: "100%",
        canEdit:true, //added
        height: "100%",
        autoFetchData: true,
        dataSource: "supplyItem" 
    });
    The decimal separator is ".", even though it should be ",". This is also true when editing data:
    Click image for larger version

Name:	Language.png
Views:	76
Size:	34.1 KB
ID:	255742



    This is from getlocalization:
    Click image for larger version

Name:	getlocalization.png
Views:	89
Size:	34.2 KB
ID:	255741

    Best regards
    Blama

    #2
    The field in question is of type "float" - if it were "localeFloat", it would be formatted according to locale, which you can test by overriding the field-type via the grid's field-list.

    We may change the types of such fields in our showcase DataSources to avoid similar reports in the future.

    Comment


      #3
      Hi Isomorphic,

      ah, sorry for the bogus report.

      Best regards
      Blama

      Comment

      Working...
      X