Hi Telerik,
I really like how the TimeSpanPicker has a "StringFormat" property on it, but I'm having challenges getting it to do what I want.
I want the selected timespan to show as:
"x Days and y Hours".
StringFormats like the following aren't working:
{0:d} Days and {0:h} Hours
Can you please help me out? what do I need to do to make it show the way I want it to?
Here is a simplified version of what i'm trying to achieve.
I have a product class with a collection of user defined fields
public class Product
{
public string ProductName { get; set; }
public string Category { get; set; }
public List<UserDefinedField> userDefinedfields;
}public class UserDefinedField{ public string Name { get; set; } public string Value { get; set; }}I can bind the name and category easily in Xaml.
<telerik:GridViewDataColumn DataMemberBinding="{Binding ProductName}" /><telerik:GridViewDataColumn DataMemberBinding="{Binding Category}" />I'd like to also bind the collection of user defined field to the end of the grid in code behind. I've tried this but no luck, the columns are created but no data is loaded.
foreach (UserDefinedField udf in products[0].UserDefinedFields) ProductGrid.Columns.Add( new GridViewDataColumn { Header = udf.Name, DataMemberBinding = new Binding(udf.Value) });
Thank you in advance.
Hi,
I am displaying multiple serie charts on a single page which all have the same categoryAxis. What I would like to do is display the tooltip in floating panel and crosshair for every chart when hovering over a single one.
I've synchronized TrackBall in every graphic, I've proved with TrackInfoUpdated event, but I've only get the information from one single graphic, not from all of them. Can I get the information from all set of points in this event? there are any other ideas to attach every point from different graphics?
Thanks,
Gerard
Hello,
is it possible to test an application that uses the Touchmanager events on a machine that has no touchscreen? My main development machine has no touchscreen and it is a little cumbersome to deploy the application for each test on the target device.
Is there a way to simulate at least the Tap-event with a mouse click?
Beste regards,
Thomas

Hi,
Is there a way to bind the fill color of a map shape to a property of my DataContext but I can't do it. Here's what I've tried:
<DataTemplate x:Key="FooTemplate" DataType="Foo">
<telerik:MapPathView>
<telerik:MapPathView.Data>
<tmpl:FooView .../>
</telerik:MapPathView.Data>
<telerik:MapPathView.ShapeFill>
<telerik:MapShapeFill Fill="{Binding SomeProperty, Converter={StaticResource SomePropertyToBrushConverter}}" StrokeThickness="1"/>
</telerik:MapPathView.ShapeFill>
</telerik:MapPathView>
</DataTemplate>
When I run, I have an error "Cannot find source for binding with reference ..." because MapSahpeFill doesn't inherit the "inheritance context".
So is there a way to achieve what I want ?
Thank you,
Etienne


Hi,
1. I want to open a tool window with content.
2. after the tool window is shown, i want to docking it (by dragging) to existing radDaocking control.
I saw this telerik documentation for telerik winform:
ToolWindow windowTop = new ToolWindow();
windowTop.Text = "Window Top";
RadDocking radDock1 = new RadDocking();
this.radDock1.DockWindow(windowTop, DockPosition.Top);
what is the replacement code for this sample for telerik wpf?
(i don't have windowTop.Text neither radDock1.DockWindow(windowTop, DockPosition.Top))
Thanks
Hi,
Need to remove the vertical girdlines for only specific columns in the Grid. As pointed out in the attached grid screenshot we need to remove the last gridline.
Or can we make sure that existing column fill the entire space of the grid. [Already tried ColumnWidth = "*", not working ]
Any suggestion are welcome.
Thanks in advance