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

Blurry tile item

10 Answers 129 Views
TileView
This is a migrated thread and some comments may be shown as answers.
Ken
Top achievements
Rank 1
Ken asked on 16 Feb 2011, 03:08 PM
Hello,

I've a strange problem: in a TileView with 3 tile items placed in a layout like so 1/2 | 3, so two stacked vertically on the left and one maximized on the right, the item that ends up in the bottom left (number 2 position) is rendered really blurry. Regardless of the actual item that ends up minimized there, it's blurry. The other two items are fine.

I also noticed that this doesn't happen, for some reason, out-of-browser, only in-browser.

The blur is hard to explain, the best I could say is that when you click a tile item's minimize or maximize button, during the animation, they are rendered somewhat blurry. This is kind of what my problem item looks like, it's like the animation is still ongoing or something.

Any ideas why this might be?

Thanks,
Adrian

10 Answers, 1 is accepted

Sort by
0
Zarko
Telerik team
answered on 18 Feb 2011, 12:08 PM
Hi Adrian,

Thank you for your bug report.
There's a known problem with blurred TileViewItems and it will be fixed with the Q1 2011 Beta which will be available next Tuesday (22th of February) the latest.
If you have further questions feel free ti ask.

Regards,
Zarko
the Telerik team
0
Ken
Top achievements
Rank 1
answered on 18 Feb 2011, 12:09 PM
Hi,

Thanks for the info. Is it possible to get a hotfix just for this problem and integrate it with the current "stable" release? I'd rather not use the whole suite in beta if possible.

Thanks,
Adrian
0
Zarko
Telerik team
answered on 18 Feb 2011, 06:41 PM
Hello Adrian,

 I'm sorry to inform you that this won't be possible because the RadTileView went through major refactoring (it was literally rewritten) and as of Q1 2011 Beta we stop the support for the old RadTileView. 
If you need more information don't hesitate to ask.

Best wishes,
Zarko
the Telerik team
0
Acanthia Norman
Top achievements
Rank 1
answered on 15 Mar 2011, 05:54 PM
I have a demo coming up in a week and I'm seeing this blurry issue.  Is there a workaround or a hotfix I can apply until the non-beta version with the fix comes out?
0
Zarko
Telerik team
answered on 16 Mar 2011, 10:18 AM
Hi Acanthia Norman,

 Unfortunately there's no know work around for this issue and there are no other versions except the Q1 Beta that include our fix, but we are going to release the official Q1 2011 until the end of the week and this fix will be in it.
If you have more questions feel free to ask. 

All the best,
Zarko
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
0
James Arnott
Top achievements
Rank 1
answered on 12 Apr 2011, 08:36 PM
We have upgraded to the new Q1 controls but are still seeing the Blur issue occur.
0
Kiril Stanoev
Telerik team
answered on 13 Apr 2011, 12:39 PM
Hi James,

Could you please send us a sample project reproducing the issue as well as some screenshots of what is displayed at your end. This way we'll be better able to assist you.

Regards,
Kiril Stanoev
the Telerik team
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 Public Issue Tracking system and vote to affect the priority of the items
0
Josh
Top achievements
Rank 1
answered on 13 Apr 2011, 05:23 PM
Hi Kiril,

I work with James and have created a new sample project for you to review.  The problem we are noticing is when the tile's state changes, the current content enlarges and fades away before the new content is shown.  Don't know if it's a bug or not.  If not, how do we get rid of transition animation of the content?  I have attached a screen shot in midst of maximizing the tile.  Thanks.



<telerik:RadTileView Margin="0,0,1,1" d:LayoutOverrides="Width, Height" MinimizedRowHeight="150" MinimizedColumnWidth="150">
   <telerik:RadTileViewItem Header="RadTileViewItem" TileState="Maximized">
    <telerik:RadFluidContentControl State="Normal" NormalToSmallThreshold="200,200" SmallToNormalThreshold="199,199" NormalToLargeThreshold="400,400" LargeToNormalThreshold="399,399">
     <telerik:RadFluidContentControl.Content>
     <Grid Width="200" Height="172">
      <TextBlock Text="restore"/>
     </Grid>
     </telerik:RadFluidContentControl.Content>
     <telerik:RadFluidContentControl.LargeContent>
      <Grid Width="400" Height="400">
       <TextBlock Text="large"/>
      </Grid>
      </telerik:RadFluidContentControl.LargeContent>
      <telerik:RadFluidContentControl.SmallContent>
       <Grid Width="30" Height="30">
        <TextBlock Text="small"/>
       </Grid>
      </telerik:RadFluidContentControl.SmallContent>
       
    </telerik:RadFluidContentControl>
    </telerik:RadTileViewItem>
   <telerik:RadTileViewItem Header="RadTileViewItem"/>
   <telerik:RadTileViewItem Header="RadTileViewItem"/>
   <telerik:RadTileViewItem Header="RadTileViewItem"/>
  </telerik:RadTileView>
0
Zarko
Telerik team
answered on 14 Apr 2011, 10:34 AM
Hello Josh,

 The behavior that you describe comes from the RadFluidContentControl and more specifically from the Transition control inside it. If you want to disable the transition effects you should set the Transition property of the RadFluidContentControl to null like this:

<telerik:RadFluidContentControl State="Normal" NormalToSmallThreshold="200,200"
                SmallToNormalThreshold="199,199" NormalToLargeThreshold="400,400"
                LargeToNormalThreshold="399,399" Transition="{x:Null}">
You can see the different transitions in this demo. I'll also advise you not to use Thresholds because they are not 100% reliable, instead you should use one of the approaches described here and here.
If you have further questions feel free to ask.

Regards,
Zarko
the Telerik team
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 Public Issue Tracking system and vote to affect the priority of the items
0
Josh
Top achievements
Rank 1
answered on 14 Apr 2011, 03:02 PM
That's it.  Thanks.
Tags
TileView
Asked by
Ken
Top achievements
Rank 1
Answers by
Zarko
Telerik team
Ken
Top achievements
Rank 1
Acanthia Norman
Top achievements
Rank 1
James Arnott
Top achievements
Rank 1
Kiril Stanoev
Telerik team
Josh
Top achievements
Rank 1
Share this question
or