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

RadBusyIndicator in dataform

2 Answers 51 Views
BusyIndicator
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Jonas
Top achievements
Rank 1
Jonas asked on 24 Sep 2013, 08:51 AM
Hello!

Having some problems with the busyindicator and my dataform. The busyindicator shows as intended but it´s behind the dataform.
How can I show the busyindicator over the dataform?

<Grid Grid.Row="1">
            <telerikPrimitives:RadBusyIndicator Background="#CC000000"
                                            x:Name="busyIndicator"
                                            Grid.Row="1"
                                            Grid.ColumnSpan="1"
                                            AnimationStyle="AnimationStyle7"  >
            </telerikPrimitives:RadBusyIndicator>
            <ScrollViewer>
             
                <telerikInput:RadDataForm Grid.Row="1" Margin="12,48,12,12" x:Name="DataForm" DataFieldCreated="radDataForm_DataFieldCreated">


Best regards,
Jonas

2 Answers, 1 is accepted

Sort by
0
Deyan
Telerik team
answered on 25 Sep 2013, 08:58 AM
Hello Jonas,

Thanks for writing and for your question.

The reason for seeing the Busy Indicator behind the Data Form is because the Busy Indicator is before the ScrollViewer (where the Data Form resides) in the layout. You simply need to put it after the Scroll Viewer and you should get the desired behavior.

Regards,
Deyan
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
Jonas
Top achievements
Rank 1
answered on 25 Sep 2013, 09:03 AM
Edit: Didn´t see your answer before I posted. But it was the same as my solution. :)

Solved it...

If I put the radbusyindicator code in the bottom of the grid it works...

So instead  of

<Grid Grid.Row="1">
BusyIndicator  Code
RadDataForm Code
</Grid>

I used

<Grid Grid.Row="1">
RadDataForm Code
BusyIndicator  Code
</Grid>

/ Jonas
Tags
BusyIndicator
Asked by
Jonas
Top achievements
Rank 1
Answers by
Deyan
Telerik team
Jonas
Top achievements
Rank 1
Share this question
or