Hello,
New to the forums so sorry if this is in the wrong spot.
I'm finding that the WPF control "FileBrowserEditTextBox" causes Visual Studio to crash. Reproduction steps are as follows:
Once the solution is done building, the instance of Visual Studio crashes. Starting debugging, instead of building the solution directly, bypasses the problem, but doing a rebuild solution after debugging has stopped causes the crash. Present in Visual Studio 15.6.0 and 15.6.2 with Telerik UI for WPF version 18.1.220.0.
Nick
I am enabling mulitpleselection of combobox and using Text field to bind a string value. After I use the multipleSelectionSeparator = "|", there is the null reference exception thrown. The binding field "BindText" has been initialized to empty string. There is no issue if I do not use multipleSelectionSeparator., so I am really confused why null reference is thrown and stack trace image is attached.
<telerik:RadComboBox x:Name="RadComboBox"
IsReadOnly="False"
IsEditable="False"
Text="{Binding BindText, Mode=OneWayToSource}"
AllowMultipleSelection="True"
ItemsSource="{Binding BindTexts}"
IsEnabled="{Binding IsEnabled}"
MultipleSelectionSeparator=";"
/>
Hi,
We are trying to create a chart that looks the one shown in the attachment. Of note is the need to have different widths and colors for each bar as well as no gaps between them. Also, the ability to overlay the chart with the dotted lines is essential. We have found a few old forum threads saying that variable bar widths is not supported. Is this still the case?
So I dug up and old project that I need to modify however I cannot get it to compile as I appear to be missing references. Both RadRadialMenu and RadRibbonWindow (plus child items such as RadRadialMenuItem) are missing from assemblies. I have the latest WPF components installed. How do I fix this?
Our app doesn't start from a C# application but rather for a C++ app, which means all our WPF code runs from dlls.
That means we can't have an App.xaml file so all the resource dictionaries are declared wherever they're needed.
When floating a pane, it crates a ToolWindow but the styling is never applied to it, probably because there's no App.xaml.
How can we apply the styling?
I have a RadAutoCompleteBox:
<
telerik:RadAutoCompleteBox
x:Name
=
"CustomerAutoCompleteBox"
Grid.Row
=
"10"
Grid.Column
=
"1"
Margin
=
"3"
IsEnabled
=
"{Binding IsReadOnly, Converter={StaticResource InvertedBooleanConverter}}"
ItemsSource
=
"{Binding Occurrence.Appointment.AllCustomerResourceTypesForDialog, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
SearchText
=
"{Binding Occurrence.Appointment.AllCustomerResourceTypesSearchText, BindsDirectlyToSource=True, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
SelectedItem
=
"{Binding Occurrence.Appointment.Customer, ValidatesOnDataErrors=True, NotifyOnValidationError=True, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
IsDropDownOpen
=
"{Binding Occurrence.Appointment.IsCustomerDropDownOpen, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
SelectionMode
=
"Single"
DisplayMemberPath
=
"DisplayName"
TextSearchPath
=
"DisplayName"
MinWidth
=
"218"
>
</
telerik:RadAutoCompleteBox
>
The Appointment which is Bound is Created and filled with data like this:
var telerikAppointment = new ExtendedAppointment();
var customerResource = new Resource
{
DisplayName = ((ModelsPath.Customer)appointment.Models[0]).KUNAM1.Trim(),
ResourceName = ((ModelsPath.Customer)appointment.Models[0]).CustomerId.ToString().Trim(),
ResourceType = Application.Current.FindResource("ResourceName.Customer") as string
};
telerikAppointment.AllCustomerResourceTypesForDialog.Clear();
telerikAppointment.AllCustomerResourceTypesForDialog.Add(customerResource);
telerikAppointment.Customer = customerResource;
Not my problem is, that the AllCustomerResourceTypesSearchText Property is not Updated when i start the AutoCompleteBox with a CustomerResource in it. When i tyoe some Text in it now to Search for another one the AllCustomerResourceTypesSearchText is not updaten and then my application is not searching for more Customers in the Database.
It Works fine if i start the RadBox without a pre selected Customer and AllCustomerResourceTypesForDialog and then try to search
Customer is a Resource and AllCustomerResourceTypesForDialog is a ObservableCollection<Resource>
I dont know how to fix this Problem so the bound AllCustomerResourceTypesSearchText Property is always updated.
Hello,
In the RadMap documentation, under Overview, the following is in the key features:
Search - searching for a particular location takes just a few seconds thanks to the integrated search functionality in RadMap.
But nothing else indicates how this work.
I've tried to set IsTextSearchEnabled to true in my XAML, but I see nothing on the map that let me search for an address.
How doest this "feature" work?
Thanks in advance
Hello,
Currently the RadWindow.ResponseButton attached property is working only with RadButton (and classes that inherited from). It would be nice if it is also available with RadSplitButton, to simulate the press of the button.