Hi,
First of all how to add defaultValues to json.
Like setting
CodeSurveyKnockout.surveyLocalization.defaultLocale = 'en'
doesn't give locale: 'en'
in json output for defaultLocale
and
I have not found any solution for changing the default locale from dropdown-
to
after I select french from english.
and which should change the json from-
{ "locale": "en", "title": { "default": "title", "fr": "frTitle" }, // here default is 'en'
to
{ "locale": "fr", "title": { "default": "frTitle", "en": "title" }, // here default is 'fr'
or can we simply remove the 'Default()' from default language-
when 'en' default-
when 'fr' default-
and include the localeName in place of default in json-
{ "locale": "fr", "title": { "fr": "frTitle", "en": "title" }, // here default is 'fr'
can this be done?
Thanks for providing support.