
Hello,
I am using a tile view and within the tiles there is scrollable content. How can I make it that the scroll for the tile view is not active when the mouse is over the scrollable content in the tile? Thanks!
Hello
I trying to bind the value of the filter to property in VM
This not working
<rad:RadGridView.FilterDescriptors>
<rad:CompositeFilterDescriptorCollection>
<rad:FilterDescriptor Member="Married"
Operator="IsEqualTo"
Value="{Binding SomeKey}" />
</rad:CompositeFilterDescriptorCollection>
</rad:RadGridView.FilterDescriptors>
What is the problem?
Best regards
Ehud
Hi, I am having an issue where if I add a RadBook as a Content template to a RadTileView, it throws an exception:
An unhandled exception of type 'System.ArgumentOutOfRangeException' occurred in PresentationCore.dll
Additional information: The parameter value must be greater than zero.
This doesn't always happen but will if you move enough of them around. If I take out the book control it works fine. Any Ideas?
-adam
Hello;
I use telerik tile view in our project.
We have customized the template to add a "remove button" in the header by editing the tileview template. The delete button is available in the different views (small, normal & large). We have been requested to set the button only in small & normal view. So, how can we remove the "delete button" from the large view only.
Thanks for your replies.
Best regards
I'm trying to format the String output for my Series Trackball so that it only shows 2 decimal places. The code I have at the moment for my Template is as follows:
<telerik:RadCartesianChart.Resources><sys:String x:Key="CategoryFormat">Date: {0}</sys:String><sys:String x:Key="ValueFormat">Value: {0:n2}</sys:String> <DataTemplate x:Key="seriesTrackBallInfoTemplate"> <StackPanel Orientation="Vertical"> <TextBlock Text="{Binding Path=MeasurementData.Category, StringFormat={StaticResource CategoryFormat}}" /> <TextBlock Text="{Binding Path=MeasurementData.Value, StringFormat={StaticResource ValueFormat}}" /> </StackPanel></DataTemplate> </telerik:RadCartesianChart.Resources>The type of MeasurementData.Value is Double.
I've tried various approaches and nothing seems to work.
Any suggestions?