6 Answers, 1 is accepted
0
Hi Javier,
Please take a look at the attached project and let me know if it helps.
Regards,
Kiril Stanoev
the Telerik team
Please take a look at the attached project and let me know if it helps.
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

Eric
Top achievements
Rank 1
answered on 26 Apr 2011, 05:45 PM
The sample (TileViewItemWithoutHeader) shows the tiles, but lacks the TileView behavior. Is there a way to either:
I am trying to use the TileView like content buttons. The maximized tile would be the page's main content while the minimized tiles would be selectable and button-like.
- Hide the header, but forward a clicking event to the header (to enable the tiling)
- Hide the content when not maximized and remove the toggle button
I am trying to use the TileView like content buttons. The maximized tile would be the page's main content while the minimized tiles would be selectable and button-like.
0
Hello Eric,
Zarko
the Telerik team
By editing the default RadTileViewItem template you can achieve both scenarios, so you can choose which one suits your needs better. Could you please examine the two attached project and see if this is what you are looking for?
If you have further questions feel free to ask.
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

soroush
Top achievements
Rank 1
answered on 06 Dec 2011, 02:05 PM
This code removes header, but I wasn't able to select any item.
0
Hi Soroush,
If the above doesn't help could you please send us a small project which demonstrates the issue at hand. This way we will be better able to assist you. Best wishes,
Kiril Stanoev
the Telerik team
Have you tried setting the IsSelectionEnabled and SelectionMode properties?
<
telerik:RadTileView
IsSelectionEnabled
=
"True"
SelectionMode
=
"Single"
>
<
telerik:RadTileViewItem
Background
=
"Red"
Header
=
"Item 0"
Style
=
"{DynamicResource RadTileViewItemStyle}"
/>
<
telerik:RadTileViewItem
Background
=
"Green"
Header
=
"Item 1"
Style
=
"{DynamicResource RadTileViewItemStyle}"
/>
<
telerik:RadTileViewItem
Background
=
"Blue"
Header
=
"Item 2"
Style
=
"{DynamicResource RadTileViewItemStyle}"
/>
<
telerik:RadTileViewItem
Background
=
"Orange"
Header
=
"Item 3"
Style
=
"{DynamicResource RadTileViewItemStyle}"
/>
</
telerik:RadTileView
>
If the above doesn't help could you please send us a small project which demonstrates the issue at hand. This way we will be better able to assist you. Best wishes,
Kiril Stanoev
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
0

soroush
Top achievements
Rank 1
answered on 09 Dec 2011, 11:23 AM
Fixed the problem, thanks for the reply :)