Hi Shanmugaraja,I already use the following code, but my question is: if for each control that occupies members will have to put the locate, there is some form that avoids putting it for each control that uses.ej.Uploadbox.Locale["nl-BE"] = {buttonText: {upload: "Subir",browse: "Subir Archivo",cancel: "Cancelar",close: "Cerrar"},dialogText: {title: "Archivo",name: "Nombre",size: "Tamaño",status: "Estatus"},cancelToolTip: "Cancelar",removeToolTip: "Eliminar",retryToolTip: "Eliminar",completedToolTip: "Completado",failedToolTip: "Fallo",closeToolTip: "Cerrar"};$("#UploadFile").ejUploadbox({ locale: "nl-BE" });There is some way that I continue to respect the general configuration that syncfusion offers, so as not to be placing locate for each control that uses javascript APIThe configuration is the following:Regards
|
<script>
$(function () {
ej.setCulture("es-ES");//set Culture es-ES
$("#UploadFile").ejUploadbox();
$("#DatePicker").ejDatePicker();
});
</script> |
|
<script>
$(function () {
ej.setCulture("es-ES");//set Culture es-ES.
$("#UploadFile").ejUploadbox({ dialogPosition:{ X: 250, Y: 40}});
$("#DatePicker").ejDatePicker();
});
</script>
<div id="UploadFile"></div>
<input id="DatePicker" style="margin: 35px auto" />
|