Page 2 of 2
Re: Question regarding localization
Posted: Fri Feb 07, 2014 10:31 am
by HighAley
Hello.
We have made an improvement.
The current language will be checked in our prerelease build from February 14.
Thank you.
Re: Question regarding localization
Posted: Fri Feb 07, 2014 12:16 pm
by PJoyeux
Thanks! Great support again!
Cheers and have a nice weekend!
Pascal
Re: Question regarding localization
Posted: Fri Feb 07, 2014 2:00 pm
by HighAley
Hello.
We are always glad to help you.
Let us know if you need any additional help.
Thank you.
Re: Question regarding localization
Posted: Tue Feb 18, 2014 4:59 pm
by PJoyeux
Just checked the newest version and it works, thanks!
Cheers,
Pascal
Re: Question regarding localization
Posted: Wed Feb 19, 2014 3:39 am
by Andrew
Hello,
Great! Have a nice week.
Re: Question regarding localization
Posted: Wed Feb 19, 2014 7:26 am
by PJoyeux
Well, almost...
If the user selects a language the checkmark indeed appears correctly...
But my application sets a starting localization with StiConfig.LoadLocalization (...). In this case the checkmark is not shown.
Once the user starts selecting a localization, then the checkmark appears in front of the selected localization.
How do I set the localization correctly
from code in order to let the checkmark appear in fron of the localization?
Cheers,
Pascal
Re: Question regarding localization
Posted: Wed Feb 19, 2014 1:20 pm
by HighAley
Hello.
We have added a
SelectedItem parameter to the
LoadCustomerLocalizationEventArgs.
Next code will work in our next prerelease build on Friday:
Code: Select all
private void designer_LoadCustomerLocalization(object sender, LoadCustomerLocalizationEventArgs e)
{
e.Items = new string[] { "de", "en"};
e.Processed = true;
e.SelectedItem = "de";
}
Thank you.
Re: Question regarding localization
Posted: Wed Mar 05, 2014 2:53 pm
by PJoyeux
I just downloaded the newest release and this works fine! Thanks!
Cheers,
Pascal
Re: Question regarding localization
Posted: Thu Mar 06, 2014 5:25 am
by Andrew
Hello,
Great! Have a nice day!