I need to i18n my jqGrid depending on the language selected. I need my jqGrid in English and German. What are the steps for the same or how can I achiev开发者_如何学Ce it?
If you need only the change the column header it is very easy:
$('#list').jqGrid ('setLabel', 6, 'Insgesamt');
changes the header of the 6-th column to 'Insgesamt'.
精彩评论