the maximize or min button is useless
and when i double click the header ,it shows just like the attachment
you can see just part of the page
19 Answers, 1 is accepted
Could you please send us some code snippets or a project that reproduces this issue because I can't determine what goes wrong only by the picture.
Kind regards,Zarko
the Telerik team
the project is larger than 2M
so i can't show you the project
can u give an email or other that i can give u the code project
You can open support ticket in order to attach the project.
Greetings,Vlad
the Telerik team
Same problem here.
Each TileViewItem is painted over the next TileViewItem and located on the upper left corner.
I tried to make a simpler page in my project - but even there, the TileViewControl will not work properly.
I use the TileViewItems to paint UserControls. The TileView and its Items are designed in XAML - no use of TileView.ItemsSource.
Thanks for your support.
If you have this problem when there's a MaximizedItem could you please try to set the MinimizedColumnWidth and MinimizedRowHeight properties and see if this helps. Also could you please examine the attached project and try to reproduce the issue with it?
Kind regards,Zarko
the Telerik team
But not my project. I set the two Properties - with no effect.
Any other idea what it could be?
Find attached a Screenshot of the upper left corner.
Thank you!
Could you tell me what's the RadTileView in (a Grid, a StackPanel etc.) ?
Regards,Zarko
the Telerik team
i have submited support ticket using another account "Huang Yong"
looking forward to your reply
Thanks
The problem is out self-made Theme. Have to check what's wrong with it.
Maybe you have some points to look for when moving Themes (wokring with Q3.2010) to Q1.2011?
Thank you!
Yes, if you use custom a theme or you've edited the template of the RadTileView or the RadTileViewItem there's a great possibility that the RadTileView won't behave as expected. Because of the virtualization the RadTileViews template is very different now, it uses its own panel - TileViewPanel and a build-in ScrollViewer. The RadTileViewItem now uses a RadToggleButton for the Minimize/Maximize button instead of a ToggleButton and there are a couple of new VisualStates/Triggers(for the MaximizeItemDocking).
If you have further questions feel free to ask.
Zarko
the Telerik team
I have updated the telerik controls to the new version 2011 Q1.
Atfer that, the radTileView is not working any more. Minimize, Maximize and so on are not working, the content is not properly displayed.
I removed the themes, but no success. It is also damaged within visual studio. Below the SCreenshots of the IDE an the running verison plus the xaml code.
Any idea how to fix this? It is very anoying, that every new version creates difficulties in the way that former running parts are not working any more.
Greeting,
Sascha
<
Grid
x:Name
=
"LayoutRoot"
Background
=
"#FFEBF3FF"
>
<
Grid.Resources
>
<
local:GridLengthConverter
x:Key
=
"Converter"
/>
</
Grid.Resources
>
<
Grid.RowDefinitions
>
<
RowDefinition
Height
=
"*"
/>
<
RowDefinition
x:Name
=
"column"
Height
=
"250"
/>
</
Grid.RowDefinitions
>
<
telerik:RadTileView
MinimizedColumnWidth
=
"100"
Name
=
"radTileView1"
IsAnimationOptimized
=
"True"
MinimizedItemsPosition
=
"Bottom"
MaximizeMode
=
"ZeroOrOne"
Grid.RowSpan
=
"2"
MinimizedRowHeight
=
"{Binding Height, ElementName=column, Mode=TwoWay, Converter={StaticResource Converter}}"
>
<
telerik:RadTileView.ItemsPanel
>
<
ItemsPanelTemplate
>
<
Canvas
Background
=
"{x:Null}"
/>
</
ItemsPanelTemplate
>
</
telerik:RadTileView.ItemsPanel
>
<
telerik:RadTileViewItem
TileState
=
"Minimized"
>
<
local:HistogramTableView
x:Name
=
"HistogramTableView1"
/>
</
telerik:RadTileViewItem
>
<
telerik:RadTileViewItem
TileState
=
"Minimized"
>
<
local:HistogramGraphView
x:Name
=
"HistogramGraphView1"
/>
</
telerik:RadTileViewItem
>
<
telerik:RadTileViewItem
TileState
=
"Minimized"
>
<
local:HistogramBereichView
x:Name
=
"HistogramBereichView1"
/>
</
telerik:RadTileViewItem
>
</
telerik:RadTileView
>
<
sdk:GridSplitter
Grid.Row
=
"1"
HorizontalAlignment
=
"Stretch"
VerticalAlignment
=
"Top"
Height
=
"5"
Background
=
"DarkGray"
Margin
=
"0 7"
/>
</
Grid
>
The problem is that you change the ItemsPanel of the RadTileView - as I mentioned in my previous post, because of the virtualization and some other new features, the RadTileView now uses its own panel - TileViewPanel and you should not change this. If you want to set the background to null you should do it like this:
<
telerik:RadTileView.ItemsPanel
>
<
ItemsPanelTemplate
>
<
telerik:TileViewPanel
Background
=
"{x:Null}"
/>
</
ItemsPanelTemplate
>
</
telerik:RadTileView.ItemsPanel
>
Zarko
the Telerik team
I changed the background as you suggested, but now it looks like the attached screenshot.
So something is still not working.
Greetings,
Sascha
Does this issue occurs when you have a maximized item? If this is the case could you please try to remove the converter for the MinimizedRowHeight - this property is now of type GridLength and you can bind it directly to the Height property of the row. I've also attached the sample project in which I test this so you could take a look at it if you want.
I'll be waiting to hear from you if this helped you.
Zarko
the Telerik team
What I find disappointing is that the RadTileView control was refactored but no mention was made of this in the release notes (which I always read). If I had read something about how customised tile views will probably not work with the new version then I would have been able to start looking there as to the cause of our problem. We are used to having to sort out minor issues when upgrading to new version of the controls, but for our application to be completely broken for no apparent reason was quite frankly a shock. This has cost us a lot of time on a critical project and I hope that Telerik can be more communicative in future when making such changes.
We appreciate your feedback and we'll try to be more attentive in next releases. In such situations when a control template of our control has been refactored, we usually want the custom style from the client and we fix it. Please accept our apologies again for the caused inconvenience.
Kind regards,
Petar Mladenov
the Telerik team