Unplanned
Last Updated: 20 Apr 2021 11:20 by ADMIN
Dimitar
Created on: 04 Mar 2020 09:17
Category: Spreadsheet
Type: Bug Report
1
Spreadsheet: The current worksheet is not updated if the workbook is set while the control is disabled

The current worksheet is not updated if the workbook is set while the control is disabled.

Workaround: 

private void RadButton_Click( object sender, RoutedEventArgs e )
{
    radSpreadsheet.IsEnabled = false;
  
    Workbook spreadsheetWorkbook =
        new XlsxFormatProvider( ).Import( File.ReadAllBytes( @"..\..\Book2.xlsx" ) );
  
    radSpreadsheet.Workbook = new Workbook( );
  
    Dispatcher.InvokeAsync( ( ) => radSpreadsheet.Workbook = spreadsheetWorkbook );
  
    radSpreadsheet.IsEnabled = true;
}

2 comments
ADMIN
Dimitar
Posted on: 20 Apr 2021 11:20

Hi Mark,

This issue is still not fixed. Unfortunately, I cannot provide you with a timeframe for the fix.

Thank you for your understanding. 

Regards,
Dimitar
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Mark
Posted on: 19 Apr 2021 18:26
Any update on this?