I drag a item to a control to create an object ,when drag over it,it should display an allowed dragVisual,when drag over another control is should display an Forbidden dragVisual ,the two DragVisual is create by different Template
it seems AddGiveFeedbackHandler is useful, in OnGiveFeedback can change the DragVisual when the target control is Allow, but I do not know how to get the target control
how to resolve this
My application runs under Arabic culture. After setting IsTrackChangesEnabled to true, and user starts making changes, then saves the document. When he opens the document next time the error shown in the image below develops.
I assume that; this occurred because, changes are tracked by date and time, and when displayed later on they must be displayed using their localization culture which is English.
Is there a way to set culture of RadRichTextBox or the component responsible for tracking changes, or any other solution?
Any help will be greatly appreciated....
One of our customers wants to be able to show Google maps in our application. I understand that they have purchased a licence to allow them to use the Goggle API. Has anyone tried to usethis with the RadMap control? Is it legal? Are Telerik planning any support for this?
Thanks
Pete


Hi I was able to create a custom control template for a GridViewCell as follows (perhaps a bad approach?):
<Style x:Key="{x:Type telerik:GridViewCell}" TargetType="{x:Type telerik:GridViewCell}" BasedOn="{StaticResource GridViewCellStyle}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type telerik:GridViewCell}">
<Grid>
<Border x:Name="RowBorder" SnapsToDevicePixels="true" BorderThickness="0,2" BorderBrush="#222" Background="#222">
<ContentPresenter Content="{TemplateBinding Content}"/> <!--Gets content for GridViewDataColumn DataMemberBinding-->
</Border>
<Border x:Name="AlertBorder" SnapsToDevicePixels="true" BorderThickness="0" Background="#444" Opacity="0"/>
</Grid>
.....Control Template Triggers Data Triggers story board stuff here
Question is could I do something similar for GridViewRow?????
<Style x:Key="{x:Type telerik:GridViewRow}" TargetType="{x:Type telerik:GridViewRow}" BasedOn="{StaticResource GridViewRowStyle}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type telerik:GridViewRow}">
<Grid>
<Border x:Name="RowBorder" SnapsToDevicePixels="true" BorderThickness="0,2" BorderBrush="#222" Background="#222">
?????????????Can I present the row cells here with an element and some sort of binding????????????
</Border>
<Border x:Name="AlertBorder" SnapsToDevicePixels="true" BorderThickness="0" Background="#444" Opacity="0"/>
</Grid>
Thanks in advance...

Hi,
I have a parent grid view which is bound to a datatable. Is it possible to show a hierarchical child grid view for a datatable?
Regards,
Swapnil
Hi Telerik,
I'm running into a problem.
I have a class that is defined like so:
````
public class User {
public string Name {get; set; }
public long Age {get; set; }
public Dictionary<string, object> CustomProperties {get; private set;} = new Dictionary<string, object>();
}
````
I am having a hard time figuring out what I need to do in order to expose the values in the Dictionary as filterable properties of the RadDataFilter. I've even gone as far as implementing a custom type descriptor and I'm not getting any joy.
What do I need to do to make this happen?