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

HELP - Tileview content problem

4 Answers 88 Views
TileView
This is a migrated thread and some comments may be shown as answers.
Chitra Krishnan
Top achievements
Rank 1
Chitra Krishnan asked on 14 Jan 2010, 05:47 PM
Hi Team,

I am using telerik Q3 2009 version Tileview.
I have 6 tileviewitems -4 having tabcontrols 
                                   2 having controls without tabcontrols. I have used the fluidcontrol threshold values as given in the tielview demo.
The issue is that when i go to normal state from large view some of the tileview items goes blank without any content.
I have used the theshold values exactly the same as given in the demo.Also sometimes the controls without the tabcontrol goes enormously bigger that it does not fit inside the tileview.

Please help me out to solve the issue as we are nearing project completion.

Regards
Chitra K

4 Answers, 1 is accepted

Sort by
0
Valentin.Stoychev
Telerik team
answered on 15 Jan 2010, 07:06 AM
Hello Chitra Krishnan,

We will need a project in order to help you with this.

Greetings,
Valentin.Stoychev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Deva
Top achievements
Rank 1
answered on 18 Nov 2010, 02:11 PM
Hi Chitra,
I am facing the same problem. Do you get solution, if yes can you forward me or explain me here?
0
abhishek
Top achievements
Rank 2
answered on 18 Nov 2010, 02:58 PM
Hi Valentin,
I have Rad TileView and a Rad GridView placed in that TileView. When i load data into the Grid, the TileView get disappear.

Here my code,
<telerik:RadTileViewItem TileState="Restored" Style="{StaticResource RadTileViewItemStyle}" HeaderTemplate="{StaticResource TileViewItemHeader1Template}">
                    <telerik:RadTileViewItem.Content>
                        <telerik:RadFluidContentControl x:Name="ContentControl1" State="Normal" ContentChangeMode="Manual">
                            <telerik:RadFluidContentControl.Content>
                                <telerik:RadGridView Grid.Row="0" Grid.Column="1" Width="350" Height="350" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch"
                    Name="gridDetails" Visibility="Collapsed"
                    ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto"
                    ItemsSource="{Binding observableInvoiceDetails}" ScrollMode="Deferred"
                    AutoGenerateColumns="False"
                    Margin="5" CanUserDeleteRows="False" CanUserInsertRows="False" CanUserSelect="False" UseLayoutRounding="True">
                    <telerik:RadGridView.RowStyle>
                        <Style TargetType="telerik:GridViewRow">
                            <Setter Property="MinHeight" Value="40"/>
                        </Style>
                    </telerik:RadGridView.RowStyle>
 
                    <telerik:RadGridView.Columns>
                        <telerik:GridViewDataColumn Header="Product Group" IsGroupable="False" IsFilterable="False" DataMemberBinding="{Binding PRODUCT_GROUP_NAME}" />
                        <telerik:GridViewDataColumn Header="Product" IsGroupable="False" IsFilterable="False" DataMemberBinding="{Binding PRODUCT_NAME}" />
                        <telerik:GridViewDataColumn Header="Object Identification" IsGroupable="False" IsFilterable="False" DataMemberBinding="{Binding OBJECT_IDENTIFICATION}" />
                        <telerik:GridViewDataColumn Header="Cost Type" IsGroupable="False" IsFilterable="False" DataMemberBinding="{Binding COST_TYPE}" />
                        <telerik:GridViewDataColumn Header="State" IsGroupable="False" IsFilterable="False" DataMemberBinding="{Binding STATE}" />
                        <telerik:GridViewDataColumn Header="Amount" IsGroupable="False" IsFilterable="False" DataMemberBinding="{Binding AMOUNT}" />
                    </telerik:RadGridView.Columns>
                </telerik:RadGridView>
                            </telerik:RadFluidContentControl.Content>
                        </telerik:RadFluidContentControl>
                    </telerik:RadTileViewItem.Content>
                </telerik:RadTileViewItem>
 
 
Code Behind:
 
gridDetails.ItemsSource = invoiceContext.InvoiceDetailsResults;
                invoiceContext.Load(invoiceContext.GetInvoiceDetailsQuery(_incomingInvoiceId.Value, filter.ToString()), InvoiceDetailsLoaded, null);

after the item source bind. The Tileview get disappear. Please can you check and give me a solution example. Thanks in advance.


0
Tina Stancheva
Telerik team
answered on 23 Nov 2010, 08:43 PM
Hello admin,

From the code snippet you provided I cannot be sure what might be causing the issue. Can you please send us a sample project reproducing the issue so that we can further investigate it.

Still, I noticed that in the RadGridView definition the Grid.Row and Grid.Column properties are set, although the RadGridView isn't set in a Grid. Also, I noticed that you are binding the RadGridView, and I suppose the RadTileView as well. If this is indeed the case, I'd recommend using the RadFluidContentControl implementation described in this help article.

Also, I attached a sample project illustrating yet another approach to a similar scenario. Have a look at it as well and let us know if we can further assist you.

Sincerely yours,
Tina Stancheva
the Telerik team
Browse the videos here>> to help you get started with RadControls for Silverlight
Tags
TileView
Asked by
Chitra Krishnan
Top achievements
Rank 1
Answers by
Valentin.Stoychev
Telerik team
Deva
Top achievements
Rank 1
abhishek
Top achievements
Rank 2
Tina Stancheva
Telerik team
Share this question
or