Hello,
It seems that there is an issue when projects are under TFS source control. When saving the solution or after committing changes, visual studio hangs 5 to 10 minutes. I don't have this issue when telerik extensions are not installed.
When I analyze the devenv.exe execution, I see the call to Telerik.VSX.SolutionManagement.TfsSolutionStorage.CommintAllFiles is called. What is the role of this method?
Regards.
Hello,
I have a I think very simple question but I cant find any solution for it. Its about binding other properties, besides the DataMemberBinding to the current item.
The scenario is as follows, I have a data object which is setup as follows:
public class EmployeeViewModel{ public Employee EmployeeData { get; set; } public EmployeeViewState ViewState { get; set; }}public class Employee{ public string Name { get; }}public class EmployeeViewState{ public bool ColumnNameReadOnly = true; }
In my main viewmodel I have the following:
public class ViewModel{ public ObservableCollection<EmployeeViewModel> Employees { get; set; }}
Now I want to bind my view to this collection, I have the following XAML:
<telerik:RadGridView x:Name="grid" MinHeight="400" DataContext="{Binding}" ItemsSource="{Binding Employees}"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn Header="Name:" DataMemberBinding="{Binding Path=EmployeeData.Name}" Width="215" IsReadOnly="{Binding Path=ViewState.ColumnNameReadOnly}"/> </telerik:RadGridView.Columns></telerik:RadGridView>
The Name property of the EmployeeData object is correctly bind to the current item of the row, but the IsReadOnly property binding is looking for a ViewState object in my main viewmodel!
How can I set the datacontext for this property the same as with the DataMemberBinding?
Regards,
Marcel
Hello,
I having problem with RadDiagramTextShape font size when it is editing. I need to RadDiagramTextShape font size in edit mode is equal to font size in normal state. I don't see any relationship between the font size in normal mode and edit mode (see attach file). I think currently font size is fixed value in edit mode.
How I can binding/set size font in edit mode to equal in normal mode?
Thanks you
Adam

Hi,
i have a sample code:
var document = new RadDocument(); RadDocumentEditor editor = new RadDocumentEditor(document); editor.Document.LayoutMode = DocumentLayoutMode.Paged; editor.Document.CaretPosition.MoveToFirstPositionInDocument(); for (int i = 0; i < 15000; i++) { stopwatch.Start(); editor.InsertLine("TEST"); stopwatch.Stop(); System.Diagnostics.Debug.WriteLine(stopwatch.Elapsed); stopwatch.Reset(); }
Why each of InsertLine call takes more time than previous?
When RadDocument contains more text it takes more time to insert? This document is not used or binded anywhere.
Thanks.

<Rectangle x:Name="HorizontalLine" Stroke="{StaticResource LineBrush}" Height="1" HorizontalAlignment="Right" VerticalAlignment="Center"> <Rectangle.Clip> <RectangleGeometry Rect="0,0,10000,1"/> </Rectangle.Clip> </Rectangle> <Rectangle x:Name="VerticalLine" Stroke="{StaticResource LineBrush}" HorizontalAlignment="Center" VerticalAlignment="Top" Width="1"> <Rectangle.Clip> <RectangleGeometry Rect="0,0,1,10000"/> </Rectangle.Clip> </Rectangle>
The EditorAttribute of the PropertyGrid currently requires the control type to be available for the class defining the attribute. In the original .NET Property Grid, the EditorAttribute supported a constructor with a string which allowed the type to be resolved at runtime rather than compile time. The TypeConverter attribute also has this type name signature available. This is particularly useful when architecting a solution where the model libraries shouldn't reference the views.
The functionality could be added with a simple constructor signature like this:
public EditorAttribute(string editorTypeName)
this(Type.GetType(editorTypeName)
{
}
Does GridView support jira like filter?
like the link below
https://jira.atlassian.com/secure/SessionNavigator.jspa