[DataServiceKey("FactTradeHeaderIdentifier")] public class TradeHeaderModel { [Key] [DataMember(IsRequired = true)] public int FactTradeHeaderIdentifier { get; set; } ... } /// <summary> /// There are no comments for Edft.Regulatory.Tracker.Service.Web.ApiModels.TradeHeaderModel in the schema. /// </summary> /// <KeyProperties> /// FactTradeHeaderIdentifier /// </KeyProperties> [global::System.Data.Services.Common.EntitySetAttribute("TradeHeaders")] [global::System.Data.Services.Common.DataServiceKeyAttribute("FactTradeHeaderIdentifier")] public partial class TradeHeaderModel : global::System.ComponentModel.INotifyPropertyChanged { /// <summary> /// There are no comments for Property FactTradeHeaderIdentifier in the schema. /// </summary> [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Services.Design", "1.0.0")] public int FactTradeHeaderIdentifier { get { return this._FactTradeHeaderIdentifier; } set { this.OnFactTradeHeaderIdentifierChanging(value); this._FactTradeHeaderIdentifier = value; this.OnFactTradeHeaderIdentifierChanged(); this.OnPropertyChanged("FactTradeHeaderIdentifier"); } } ...}var ds = new QueryableDataServiceCollectionView<TradeHeaderModel>(apiService.Container, apiService.Container.TradeHeaders);
I'd like to be able to use a masked input control to allow the user to enter a hexadecimal number representing a color value (ARGB) e.g. #FF445566 or 0x445566. Is there some way I can use one of the mask controls to achieve this?
Thanks
Pete

I know that it is possible to remove distinct values from the filters, as described in this article: https://docs.telerik.com/devtools/wpf/controls/radgridview/filtering/how-to/howto-display-all-distinct-values
But I want to add distinct values to the column filter. The use case would be when the user is creating a favorite for a specific set of filters. When the user comes back later to the list, it may not contain the values that the favorite filter had specified at that moment. But the user would like to still be able to see what the filters for the favorite looks like.
Is it possible to add distinct values to a column filter, without creating a custom filter editor?

Hello,
I've got a problem with the control.
After a while after applying a filter, I get SQL & Entity Exception.
Now I would like to debug it and see where exactly is the issue.
I can't look into it selecting the event.
How can I do it?
Regards

Hi,
Is it possible to make a connection with a cap in the middle? I want to obtain an connection without caps at the start and end but with an arrow in the middle only.
Like this:
------->-------
How can that be done? Thank you for your help!
Having an issue where I have put a textbox in a toolbar.
The textbox Text is bound to a property of a Viewmodel but the setter does not get exercised.
it seems as though focus is never lost from the textbox even if the next item does receive focus.
I would have sworn I have used this setup before without issue.
I pulled the code into a simpler project just to verify I was not crazy and it acted the same.
if I pull the textbox out of the toolbar it works fine.
It must be something stupid I am doing. but i cant see it. What am I doing wrong.
Any help would be appreciated
<telerik:RadToolBarTray Width="400" >
<telerik:RadToolBar >
<TextBox Text="{Binding Main.Cali ,Mode=TwoWay}" Width="100" />
</telerik:RadToolBar>
</telerik:RadToolBarTray>
Thanks
Dave.

Telerik.Windows.Controls.RadCombobox.SelectedItemText returns null after screen reloads. I am able to read the Selected Item by using Visual UIA Verify. But, was unable to read it through automation code using TestStack.White framework. Below is the RadComboBox details from xaml page
<telerik:RadComboBox x:Name="ComboBox1"
Style="{StaticResource styleRadComboBoxTransparent}"
ItemsSource="{Binding FitAlgorithms}"
SelectedItem="{Binding SelectedBeadPlex.CurveFitData.FitAlgorithm, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
IsEnabled="{Binding EditEnabled}"
Margin="0,5,0,0"
>
telerik:RadComboBox.ItemTemplate
</telerik:RadComboBox.ItemTemplate>
But,
ComboBox1.SelectedItemText returns null in the Automation code. Please share your suggestions.
Thanks.
public PanelAssociation(DateTime Date) { date = Date; InitializeComponent(); Day.Text = date.ToShortDateString(); DragDropManager.AddDropHandler(ListExtern, OnDrop); DragDropManager.AddDragOverHandler(ListExtern, OnDragOver); } private void OnDrop(object sender, Telerik.Windows.DragDrop.DragEventArgs e) { var draggedItem = ((DataObject)e.Data).GetData("DragData"); var droppedItem = (e.OriginalSource as FrameworkElement).ParentOfType<RadTreeViewItem>(); PeopleModel.PeopleDetail people = draggedItem as PeopleModel.PeopleDetail; OrderModel.OrderHead head = droppedItem.Item as OrderModel.OrderHead; //create program OrderModel.OrderService.CreateProgramByID(head, date, people.id); } private void OnDragOver(object sender, Telerik.Windows.DragDrop.DragEventArgs e) { var draggedItem = DragDropPayloadManager.GetDataFromObject(e.Data, "DragData"); var droppedItem = (e.OriginalSource as FrameworkElement).ParentOfType<RadTreeViewItem>(); //remove all selections (sender as RadTreeView).SelectedItem = null; //select just droppeditem if (draggedItem is PeopleModel.PeopleDetail) { droppedItem.IsSelected = true; } else { e.Effects = DragDropEffects.None; } e.Handled = true; }