Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I use jqGrid grid table plugin for my HTML files. How can I internationalize my table's column, header etc? I mean I will load a property file or change a variable, my table template will be in that language?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
120 views
Welcome To Ask or Share your Answers For Others

1 Answer

Simply replace:

<script src="js/lib/grid.locale-en.js"></script>

with a language of your choice, like:

<script src="js/lib/grid.locale-pl.js"></script>

Standard (English) locale, Redmond theme:

English, Redmond

Polish locale, Le Frog jQuery UI theme:

Polish, Le Frog

Source


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...