
How to change the Tooltip width in appointment and make text not wrapping?
Thanks,
-Jacky

Hello Telerik,
I am getting following exception message: "the calling thread cannot access this object because a different thread owns it".
I have RadDesktopAlertManager inside a separate thread and this error shows up only when DesktopAlert closes itself.
Any idea how to solve it?
Best regards
kourosh

My diagram shape have DropShadowEffect which is setted by style
<Style x:Key="SquidShapeStyle"
TargetType="telerik:RadDiagramShape">
<Setter Property="IsResizingEnabled"
Value="True" />
<Setter Property="IsManipulationAdornerVisible"
Value="True" />
<Setter Property="Focusable"
Value="True" />
<Setter Property="MinHeight"
Value="60" />
<Setter Property="MinWidth"
Value="60" />
<Setter Property="VerticalAlignment"
Value="Stretch" />
<Setter Property="HorizontalAlignment"
Value="Stretch" />
<Setter Property="Effect">
<Setter.Value>
<DropShadowEffect Color="#595757"
Opacity="0.6"></DropShadowEffect>
</Setter.Value>
</Setter>
</Style>
When operate as follows
1 select several shapes 2 Zoom in the selection bound , 3 unselect the shapes,
sometimes some shape's DropShadowEffect is not display,it seems the DropShadowEffect is covered by the shape
what is the reason for this? thanks

I have following code
when I clicked something form combobox and have error and return value to old value in that case the selected item in combobox is the last selected
01.public class MyClass02.{03. public int ForeignId04. {05. get06. { 07. return MyObject.ForeignId;08. }09. 10. set11. {12. int oldValue = MyObject.ForeignId;13. 14. try15. {16. MyObject.No = Helper.Help(value)17. }18. catch19. {20. MyObject.ForeignId = oldValue;21. }22. 23. OnPropertyChanged(() => ForeignId);24. }25. }26. 27. public MyObject MyObject{ get; set; }28.}
<telerik:RadComboBox ItemsSource="{Binding ItemList}" DisplayMemberPath="Name" SelectedValuePath="ForeignId" SelectedValue="{Binding ForeignId, Mode=TwoWay, ValidatesOnDataErrors=True, NotifyOnValidationError=True, UpdateSourceTrigger=PropertyChanged}" />

i want to change spacing between every letter ,like /expand in rtf format ,i can't find way to change that.
so as winform richtexteditor
please support it

I have a customized cell template.
<telerik:GridViewDataColumn Header="Contact" DataMemberBinding="{Binding CustAccountsLocationContact.FirstName}"> <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <TextBox Text="{Binding SomeText, ValidatesOnDataErrors=True, UpdateSourceTrigger=PropertyChanged}" /> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate></telerik:GridViewDataColumn>
Now in Model class SomeText property there is a [required] attribute. Similar this, I created the error template as
<ControlTemplate x:Key="errorTemplate"> <DockPanel> <Border BorderBrush="Red" BorderThickness="1"> <AdornedElementPlaceholder x:Name="controlWithError"/> </Border> <TextBlock Foreground="Red" FontSize="20" FontFamily="Segoe UI" Margin="3,0,0,0" MouseDown="Exclamation_MouseDown" Tag="{Binding AdornedElement.(Validation.Errors)[0].ErrorContent, ElementName=controlWithError}">!</TextBlock> </DockPanel></ControlTemplate>
However I can not see the error template if validation failed. By the answer on stackoverflow, it seems need to wrap some template with <AdornerDecorator>
Is it the solution to my case? If so, how to wrap it around telerik control?
Thank you.
Hello,
In the SaveFileDialog, when the user selects "This PC" on the folders tree, the files list doesn't change.
On the windows save file dialog, the list of devices and drives is displayed.
