How to change the translation on runtime without reload page or destroy/rebuild the whole sheduler?
1. Step:
The sheduler should be initialised with a preveously saved language-Object (for example TranslatedStringsObjectJapanese. Thats no problem.
2. Step:
I have buttons to switch between some languages as for examle japanese, french or kisuaheli.
What I want is, that the user click on a button and the language is changed ad hoc.
$('#ButtonID').on('click', function (event) {
$("#ShedulerID").jqxScheduler({ localization : TranslatedStringsObjectFrench });
});
Click on the Button don’t do anything.
Do I have to do some kind of refresh? ( I can’t see something like this in your documentation.)