Hello, we are using a RadRichTextBox with SpellChecker dialog. When a word is added to the custom dictionary, either through the context menu or the SpellChecker dialog, the AddWord event is fired correctly. However, when a word is deleted from the dialog, or the Delete All is selected, no event is fired. We are capturing both RemoveWord and DataChanged events, but they are not called. Our current version of controls may be older, so if this was fixed in a later version, please indicate that so we can proceed accordingly.
Thanks for your help.

Hello,
is it possible to force syntax highlighting, after setting expression in ExpressionEditor via property ExpressionText? (coming from binding)
On VisualStudio2013_Dark u can't read the expression without highlighting.
What i'm doing wrong? The scrollviewers bottom on editor categories and selected category items are hidden?
I'm using Telerik.Windows.Themes.VisualStudio2013 2017.1.313.40. The ExpressionEditor is in a GridRow with height of 300. It should be high enough?!
<telerik:RadExpressionEditor Grid.Row="5"ExpressionText="{Binding RollenExpression.Expression, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"Item="{Binding Source={x:Static slapz:MainWindowViewModel.Instance}, Path=Users[0]}"ExpressionChanged="ExpressionEditor_OnExpressionChanged"x:Name="ExpressionEditor"/>
Thanks for any reply.
Regards
Philipp
There is an error in the code in the vb example in the linq expression the intellisense reports a missing closing bracket ')' see attached image. do you have a fix for this.
Regards
Joe
Dim sd As ColumnSortDescriptor = (From d In grid.SortDescriptors.OfType(Of ColumnSortDescriptor)() Where Object.Equals(d.Column, column)d).FirstOrDefault()

Hi
Is it possible to add tool tip on mouse hover to spreadsheet cell.
And Also Is it possible to use Cell Template in spreadsheet Cell.
Thanks

I am facing an issue while copying content from RadGridView to Excel.
my RadGridView has a GridViewSelectColumn as first column, which must be ignored while copying.
When we select rows and copy the content, we are getting the first column header as 'System.Windows.Controls.CheckBox Content: IsChecked:False'
may i know how to avoid this.
I tried
private void copyingcontent(object sender, GridViewCellClipboardEventArgs e)
{
if (e.Cell.Column.DisplayIndex == 0)
{
e.Cancel = true;
}
}
but this didn't solve my issue. if possible provide solution with code snippet
there was same question long back
http://www.telerik.com/forums/issue-while-copying-content-from-radgridview
but the solution provided is not correct. sdk browser doesnt have this solution.the example shown in sdk browser is copying nly cell , not complete grid including headers.
Hi, I've installed the UI for WPF demo, and I would like to try out the RadGridView / GridView Control.
However, it is not available in my Visual Studio (2017) IDE, even though many many other Telerik controls are available.
If I try and add it manually, I get the error: Error The name "RadGridView" does not exist in the namespace "http://schemas.telerik.com/2008/xaml/presentation"
Can someone help me? I would like to evaluate Grid Controls specifically, so if there is a superior control to this one, I'm willing to try it.
Thanks
Brian
public class Employee{ public string FirstName { get; set; } public string LastName { get; set; } public string Title { get; set; } public string HomePhone { get; set; }}public class Order{ public string ShipAddress { get; set; } public string ShipName { get; set; } public string ShipPostalCode { get; set; } public string ShipCountry { get; set; } public Employee Employee { get; set; }}
<telerik:RadPropertyGrid Item="{Binding}" NestedPropertiesVisibility="Visible" />
Is there a way to flatten the Employee class so it doesn't have to be "opened" to edit it? I would really like to have all the Employee class properties be on the same level as the shipping properties like in the image.
How can we change the TreeListView populated area background ?
WhenTreeListView background is set to Transparent or some color it does become transparent or changes color but as soon as we populate some rows they all have white background which cannot be changed by changing the background of any of the internal TreeListView elements.
I tried changing background of GridViewCell, GridViewRow, GridViewDataColumn, GridViewRowItem, TreeListViewRow, TreeListCellsPanel and pretty much every other element but the background of populated rows remains white.
Thanks.