This is a migrated thread and some comments may be shown as answers.

Broken localizable strings and smth else.

2 Answers 47 Views
Upload
This is a migrated thread and some comments may be shown as answers.
Le_Roy
Top achievements
Rank 2
Le_Roy asked on 25 Nov 2010, 08:24 AM
Good day, dear developers!
In q3 2010 RadUpload control has broken localization.
UploadBrowseAppend string is not used from localized resource manager.
Here is my App ctor.
public App()
{
  Startup += ApplicationStartup;
  Exit +=  (sender, e) => {};
  UnhandledException += ExceptionHandle;
  StyleManager.ApplicationTheme = new Windows7Theme();
  LocalizationManager.Manager = new LocalizationManager { ResourceManager = Localization.Controls.Telerik.ResourceManager };
  InitializeComponent();
  if (!Current.IsRunningOutOfBrowser)
    return;
  Current.CheckAndDownloadUpdateCompleted += (sender, e) =>
  {
    if (e.Error == null && e.UpdateAvailable)
    {
      MessageBox.Show("Application updated, please restart to apply changes.");
    }
  };
  Current.CheckAndDownloadUpdateAsync();
}

Localized resource is filled with correct data. Worked with q2 2010 sp+.
But in q3 2010 smth changed alot.
Also broken sync between "Visiblity" of the "Append files" button and maxFilecount property. it doesnt hide on selecting last file
(e.g. maxFileCount=2, after selecting second file append button is still active and visible).
Searching for more..
To be Updated.

2 Answers, 1 is accepted

Sort by
0
Accepted
Alex Fidanov
Telerik team
answered on 25 Nov 2010, 01:32 PM
Hi Le_Roy,

Thank you for reporting these issues to us.

For Q3, we have made some significant changes around the UI related code of the RadUpload(Item). We have refactored it to be more SL 4 friendly using the Visual State Manager, delegate commands and more dependency properties. The localizaion of the AppendFiles button was a by-product of that, however we did resolve this issue previous week. The fix should already be in the latest internal build. I have made some changes in the VSM and now the AppendFiles button and the FileMaxCount property are synchronized. We apologize for the inconvenience.

Regards,
Alex Fidanov
the Telerik team
Browse the videos here>> to help you get started with RadControls for Silverlight
0
Le_Roy
Top achievements
Rank 2
answered on 25 Nov 2010, 01:41 PM
Alex, tx for info.
Tags
Upload
Asked by
Le_Roy
Top achievements
Rank 2
Answers by
Alex Fidanov
Telerik team
Le_Roy
Top achievements
Rank 2
Share this question
or