Unplanned
Last Updated: 31 Oct 2018 08:06 by ADMIN
ADMIN
Todor
Created on: 12 Oct 2016 08:47
Category: Spreadsheet
Type: Bug Report
1
There isn't an active tab selected in the SheetSelector if the RadSpreadsheet is in a RadBusyIndicator
If the RadSpreadsheet is declared as a child content in the RadBusyIndicator, there isn't any tab selected as active in the SheetSelector.

Workaround: Declare the busy indicator after the RadSpreadsheet not as its child.

For example, instead of:

<telerik:RadBusyIndicator>
    <telerik:RadSpreadsheet x:Name="radSpreadsheet" />
</telerik:RadBusyIndicator>

Do:

<Grid>
    <telerik:RadSpreadsheet x:Name="radSpreadsheet" />
    <telerik:RadBusyIndicator />
</Grid>
0 comments