Hi,
Is it possible, for a further version, to have an unified way of translating the text.
By example, for the dropdownlist, we have to use the placeHolder method.
Can we have something similar to the grid localization object for all the objects ?
var getLocalization = function () {
var localizationobj = {};
localizationobj.pagergotopagestring = "Aller a:";
...
all the strings for the grid object
..
localizationobj.placeholder = "Selectionner";
...
all the strings for other object
localizationobj.pleasewait = "Merci de patienter";
...
and then, in all the objects,
$("#jqxgrid").jqxGrid(
{
width: 685,
source: dataAdapter,
localization: getLocalization()
}
$("#jqxdropdown").jqxGrid(
{
width: 200,
localization: getLocalization()
}
Thanks