8

How do I format a grid cell to use £s instead of the default $s?

I have looked high and low but there is no answer.

I have:

{field: "price", title: "Price (£)", width: 95, format: "{0:c}"},

Which gives $0.00, but how do I get £0.00?

I have tried calling:

kendo.culture("en-gb");

Before the grid but it does nothing.

4

1 に答える 1

10

最初に、英語カルチャ JavaScript ファイルが含まれていることを確認する必要があります。次に呼び出しますkendo.culture("en-GB")(大文字と小文字が重要です)。

詳細については、グローバリゼーションのヘルプ トピックを参照してください。

于 2012-12-30T14:30:11.527 に答える