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

RADEXPANDER CONTROL

1 Answer 67 Views
Expander
This is a migrated thread and some comments may be shown as answers.
akash
Top achievements
Rank 1
akash asked on 01 Dec 2015, 10:46 AM

 
  My issue is when the radexpanblecontrol is expanded inside the small grid it gets hidden. Is there anyway that I can overlap it over the grid.

 I've put my code below along with the attached screen shot.

thankyou 

code:

<Grid Background="Cyan">
        <Grid x:Name="TitleBar" Margin="0,0,0,388" Background="#45a8d9">
            
            <telerik:RadExpanderControl  Name="expander"  Margin="273,0,649,10">
                <!--<telerik:RadExpanderControl.Background>
                    <ImageBrush Stretch="Fill"/>
                </telerik:RadExpanderControl.Background>-->
                <telerik:RadExpanderControl.Content>
                    <StackPanel Name="home" Tapped="StackPanel_Tapped_1" Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment='Top' Margin="0,0,-40,0" Width="150" Height="124">
                        <Image Source="assets/ic_report_w.png"  Height="63" Width="100" Margin="25,0" />
                        <TextBlock Margin="31,0,31,73" HorizontalAlignment="Center">
                       <Run FontWeight="Bold" FontSize="24" Text="HOME"/>
                        </TextBlock>
                    </StackPanel>
                </telerik:RadExpanderControl.Content>

                <telerik:RadExpanderControl.ExpandableContent>
                    <StackPanel Opacity="1" >
                        <Grid Background="White">
                            <TextBlock Text="DUMMY DATA" Foreground="Black" Margin="10,0"/>
                            <TextBlock Text="DUMMY DATA1"  Foreground="Black" Margin="10,30"/>
                            <TextBlock Text="DUMMY DATA2"  Foreground="Black" Margin="10,60"/>
                            <TextBlock Text="DUMMY DATA3"  Foreground="Black" Margin="10,90"/>
                            <TextBlock Text="DUMMY DATA4"  Foreground="Black" Margin="10,120"/>
                        </Grid>
                    </StackPanel>
                </telerik:RadExpanderControl.ExpandableContent>

            </telerik:RadExpanderControl>

            
        </Grid>
    </Grid>

 

 

1 Answer, 1 is accepted

Sort by
0
Ivaylo Gergov
Telerik team
answered on 04 Dec 2015, 09:04 AM
Hi,

The expandable content of the RadExpanderControl is a ContentPresenter, so if you can achieve it with any similar MS control you can achieve it with RadExpander also.

Regards,
Ivaylo Gergov
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Expander
Asked by
akash
Top achievements
Rank 1
Answers by
Ivaylo Gergov
Telerik team
Share this question
or