Hi,
I have a problem with a editable gridview.
The colums with dateticker and radcombobox have a cyan border.
It appear when I am editing and a mouse leave this field.
Xaml :
<telerik:RadGridView x:Name="ModifiableItems" Grid.Row="0" RowHeight="45" Margin="0,0,0,15" GridLinesVisibility="Horizontal" CanUserSortColumns="False" CanUserFreezeColumns="False" IsReadOnly="false" HorizontalAlignment="Left" VerticalAlignment="Stretch" IsFilteringAllowed="True" HorizontalContentAlignment="Left" RowIndicatorVisibility="Collapsed" ItemsSource="{Binding ModifiableItems, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" SelectionMode="Single" > <telerikctrl:RadGridView.Columns> <telerik:GridViewDataColumn DataMemberBinding="{Binding String}" Width="*" EditorStyle="{StaticResource TextBoxRadGridViewStyle}" /> <telerik:GridViewDataColumn DataMemberBinding="{Binding Int}" Width="*" EditorStyle="{StaticResource TextBoxRadGridViewStyle}"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding Bool}" Width="*"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding Double}" Width="*" EditorStyle="{StaticResource TextBoxRadGridViewStyle}"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding Decimal}" Width="*" EditorStyle="{StaticResource TextBoxRadGridViewStyle}" /> <telerik:GridViewDataColumn DataMemberBinding="{Binding DateTime, StringFormat=dd/MM/yyyy}" Width="*" /> <telerik:GridViewComboBoxColumn ItemsSource="{Binding ObservableCollection}" DataMemberBinding="{Binding Item}" DisplayMemberPath="Label" Width="*" EditorStyle="{StaticResource RadComboBoxRadGridViewStyle}"/> </telerikctrl:RadGridView.Columns> </telerik:RadGridView>
You can see in attachement, a sample
I use NoXaml binaries and use the Expression dark theme forlittle test program.
The MainWindow and the RadGridView use the theme. But the Scrollbar does not use the theme.
Do you have any idea why it is notstyled.
Best regards,
Ralf

Hello,
I'd like to edit an expandable object in Property Grid. For instance, when I change the value in one child property, it also changes the result in the parent property, and vice-versa.
ParentProperty (X value); (Y value); (Z value)
ChildXProperty (X value)
ChildYProperty (Y value)
ChildZProperty (Z value)
Let's say ChildX and ChildY are Double, and ChildZ is Integer. Thank you for help.

<Grid> <telerik:RadGridView x:Name="MyGridView" AutoGenerateColumns="True" CanUserDeleteRows="False" CanUserInsertRows="False" CanUserReorderColumns="False" CanUserSortColumns="False" CanUserResizeRows="True" IsFilteringAllowed="False" ShowGroupPanel="False" ColumnWidth="250" ShowColumnHeaders="False" RowIndicatorVisibility="Collapsed" SelectionUnit="Cell" CanUserFreezeColumns="False" FrozenColumnCount="1" EditTriggers="Default"> <telerik:RadGridView.Columns> </telerik:RadGridView.Columns> </telerik:RadGridView> </Grid>
public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); List<Item> items = new List<Item>(); items.Add(new Item() { TimeIn = DateTime.Now }); items.Add(new Item() { TimeIn = DateTime.Now }); items.Add(new Item() { TimeIn = DateTime.Now }); items.Add(new Item() { TimeIn = DateTime.Now }); this.MyGridView.ItemsSource = items; } } public class Item { public DateTime TimeIn { get; set; } public string SomeTextItem { get; set; } public string SomeTextItem1 { get; set; } public string SomeTextItem2 { get; set; } public string SomeTextItem3 { get; set; } public string SomeTextItem4 { get; set; } public string SomeTextItem5 { get; set; } public string SomeTextItem6 { get; set; } public string SomeTextItem7 { get; set; } public string SomeTextItem8 { get; set; } public string SomeTextItem9 { get; set; } public string SomeTextItem10 { get; set; } public string SomeTextItem11 { get; set; } public string SomeTextItem12 { get; set; } public string SomeTextItem13 { get; set; } public string SomeTextItem14 { get; set; } public string SomeTextItem15 { get; set; } public string SomeTextItem16 { get; set; } public string SomeTextItem17 { get; set; } public string SomeTextItem18 { get; set; } public string SomeTextItem19 { get; set; } }
Hello,
I have a RadMaskedInput to gather information on a form. I have a button that saves the information on the form, then clears the form. When I click the RadMaskedInput a second time to enter a new value, it uses the a cache of the previously entered value, which I have to delete before I can continue typing or some parts of the previous text will remain with my new text. Is there a way to disable this caching so that that RadMaskedInput never shows previous data that was entered?
Thanks.

What am I doing wrong?

Hello,
Is there any way to create vacation schedule for employees like here it is:
https://i.pinimg.com/564x/00/7c/eb/007ceb32e93f101dbc8f88409dbbda4f.jpg
Can I do this with GanttView?

Hi there,
I am currently testing the autocompletebox in our project and I am having some troubles understanding certain parts of it. I had a look at the documentation and the examples, but they have not really helped me.
Our scenario is simple:
A user wants to send a message to another user. The ACB is used to search for the contact and add it to the recipients list. (At least thats the plan)
We have an ObservableCollection holding all Contacts of a user. I have bound that to the ItemsSource of the ACB.
<telerik:RadAutoCompleteBox x:Name="txtSearchBoxCC" ItemsSource="{Binding ContactsList}" DisplayMemberPath="Fullname" />The ACB works as intended, I can search and select contacts as I wish.
My problem is, that I would just like to check for all the selected Items in the ACB by the time the user hits "send".
Also, how can I prepopulate the Textbox with some of the Items in the ItemsSource ?