How to show € symbol in a kendo grid cell

pasluc74669

i need help about formatting a kendo grid cell. I need to show the € symbol, in a cell of my kendo grid, but it shows me always the $ symbol. I included the js file

    <script src="../js/cultures/kendo.culture.it-IT.min.js"></script>

then this is the model.filed definition:

price: { type: "number"}

and here is the column.field definition

        {
            field: "price", title: "Price", width: 100, culture: "it-IT", format: "{0:c}"
        }

.... and another question... can I represent that type of data in a field of "string" type???

any suggestion would be appreciated.

Robin Giltner

Are you calling kendo.culture("it-IT"); on your page before the grid is created ?

Yes, you can specify a template for the price field, and turn it into a string, or you can just specify the type in model.

price: { type: 'string' }

And kendo will convert it.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to show ellipsis for long cell values in kendo ui grid?

From Dev

Show dropdown in cell of kendo grid in template

From Dev

How do I display Kendo Grid inside Kendo Grid cell?

From Dev

how to get cell click event in kendo grid

From Dev

how to focus next cell in kendo grid by enter

From Dev

how to focus next cell in kendo grid by enter

From Dev

How to mark Kendo Grid's cell as edited?

From Dev

Kendo UI, How to manually call validate() on kendo grid cell

From Dev

Kendo UI, How to manually call validate() on kendo grid cell

From Dev

How to Hide/Show ClientTemplate column in Kendo grid

From Dev

Kendo Grid Filterable cell

From Dev

Kendo Grid Filterable cell

From Dev

Clickable Cell in Kendo Grid

From Dev

How to show color picker in grid cell?

From Dev

how to clear the little red flag in the corner of the kendo grid cell

From Dev

How do I reference a specific cell in kendo grid with javascript?

From Dev

How to conditionally format Kendo UI grid cell (depending on values) razor

From Dev

how to check and change color of cell value in kendo ui grid

From Dev

How to change the background of a cell dynamically in a Kendo MVC UI Grid?

From Dev

Accessing kendo grid cell values

From Dev

How to show default image if image field is null in kendo grid ?

From Dev

Kendo grid editable multiselect grid cell

From Dev

How to open a kendo Pop Up window when a particular kendo grid column cell is in focus?

From Dev

How to open a kendo Pop Up window when a particular kendo grid column cell is in focus?

From Dev

How to get the first row corresponding cell value if i change the other rows cell value in kendo child grid

From Dev

Kendo Grid: How to set focus back to a grid cell after canceling current editing

From Dev

Kendo Grid: How to set focus back to a grid cell after canceling current editing

From Dev

kendo grid select cell data on focus

From Dev

Make cell readonly in Kendo Grid if condition is met

Related Related

  1. 1

    How to show ellipsis for long cell values in kendo ui grid?

  2. 2

    Show dropdown in cell of kendo grid in template

  3. 3

    How do I display Kendo Grid inside Kendo Grid cell?

  4. 4

    how to get cell click event in kendo grid

  5. 5

    how to focus next cell in kendo grid by enter

  6. 6

    how to focus next cell in kendo grid by enter

  7. 7

    How to mark Kendo Grid's cell as edited?

  8. 8

    Kendo UI, How to manually call validate() on kendo grid cell

  9. 9

    Kendo UI, How to manually call validate() on kendo grid cell

  10. 10

    How to Hide/Show ClientTemplate column in Kendo grid

  11. 11

    Kendo Grid Filterable cell

  12. 12

    Kendo Grid Filterable cell

  13. 13

    Clickable Cell in Kendo Grid

  14. 14

    How to show color picker in grid cell?

  15. 15

    how to clear the little red flag in the corner of the kendo grid cell

  16. 16

    How do I reference a specific cell in kendo grid with javascript?

  17. 17

    How to conditionally format Kendo UI grid cell (depending on values) razor

  18. 18

    how to check and change color of cell value in kendo ui grid

  19. 19

    How to change the background of a cell dynamically in a Kendo MVC UI Grid?

  20. 20

    Accessing kendo grid cell values

  21. 21

    How to show default image if image field is null in kendo grid ?

  22. 22

    Kendo grid editable multiselect grid cell

  23. 23

    How to open a kendo Pop Up window when a particular kendo grid column cell is in focus?

  24. 24

    How to open a kendo Pop Up window when a particular kendo grid column cell is in focus?

  25. 25

    How to get the first row corresponding cell value if i change the other rows cell value in kendo child grid

  26. 26

    Kendo Grid: How to set focus back to a grid cell after canceling current editing

  27. 27

    Kendo Grid: How to set focus back to a grid cell after canceling current editing

  28. 28

    kendo grid select cell data on focus

  29. 29

    Make cell readonly in Kendo Grid if condition is met

HotTag

Archive