when zoom out the diagram drawing area,if the zoom factor is small,the ruler will overlapping.
Hello~
Now I am testing TileView.
I followed the sample and succeed to show tiles binding data. but, after I rearrange tiles , I want to get the reordered data , and then the data is not changed.
// 1. 현재 뷰모델에 접근하는 방법 1
var mainViewModel = this.DataContext as MainViewModel;
ObservableCollection<CControlStep> ss = mainViewModel.Items;
for (int i = 0; i < ss.Count; i++)
{
try
{
MessageBox.Show(((CControlStep)ss[i]).Number.ToString());
}
catch { }
}
How can I get the rearranged data from GUI ?

Hello,
We currently have a requirement for users to be able to bold and insert tabs in a grid's cells.We're currently using `RadGridView` for our grids. We're thinking of using `RadRichTextBox` for the `GridViewDataColumn.DataTemplate` would be a good solution. But the issue is that the height of rows gets expanded because of the rich text box. Is there a way so that the `RadGridView` will look as usual? Please see attached image for reference.
Thank you,
Jan

Hi guys,
I Want to change the EventContainer background color by Progress Value
please tell me how to set How to set the different EventContainer background color

Hi. I'm using Telerik.UI.for.Wpf.40 version 2015.1.0.1075.
If there are selected too many items in RadAutoCompleteBox, it height begins to grow and selected items are displayed on amy lines.
Is there some way to display all the selected items on one line?
Is there some way to show text "Selected XXX objects" instead of the selected items, when too many items are being chosen?


This is a weird bug, but our QA team noticed that quickly typing A LOT of letters (with numbers in between them) into a NumericUpDown box, freezes the UI (and it never goes back). The NumericUpDown is directly bound to VM and we are not using any converters or code behind. We are using noXaml dlls.
XAML
<telerik:RadNumericUpDown HorizontalAlignment="Stretch"
AutomationProperties.AutomationId="FindSiteBasePortNumericUpDown"
Maximum="65534"
Minimum="1"
Value="{Binding Port, Mode=TwoWay}"
IsEnabled="{Binding IsFormIdle}"/>
VM:
public Decimal Port
{
get { return m_port; }
set { SetValue_(ref m_port, value, () => Port); }
}

