In a project I've used a telerik grid view with aggregade function (see the attached image).
I want to add in the row group other information like the delivery date. How it's possbile to add these information without use grouping function?
Hello all,
I am using a RadStacked100DataBar in order to display a percentage like fill bar (like in the attached image).
The value/s can change on refresh data, I would need an animation of the colored bar width changing. Is there a way to achieve this?
Thank you.
Hello,
In Raddiagram, when i set IsRotationEnabled property to true, i am able to use in-build rotate arrow for rotation.
How can i customize the size of this rotate arrow?

System.IO.Stream st = e.Result;dictionary = new RadDictionary();dictionary.Load(st);((DocumentSpellChecker)this.txtDesc.SpellChecker).AddDictionary(dictionary, CultureInfo.CurrentCulture);
Quite awhile back I posted a change request on the feedback portal to get support for the RadWizard in the Document Outline window of Visual Studio. Unfortunately, I've been informed that even after nearly two years it's still not on their plans due to low demand.
The Document Outline is an amazing feature with Visual Studio that allows you to quickly see the hierarchy of your WPF XAML. This is invaluable when you have complex layout -- which you probably have unless you're dealing with trivial solutions. Most controls enumerate all their children. The RadWizard swallows it up and displays nothing (image added to illustrate the difference).
I'd appreciate everyone reading this to take a look at the Document Outline feature if you're not already familiar with it, and once you do I hope you'll see why the RadWizard needs the support and then please go and upvote my feedback.
Hello
is it possible, to bind the Edit-Button to a Command in ViewModel?
If it's not possible: could i place a Custom-Button (with VM-Command-Binding) inside the RadCollectionNavigator?
Kind regards
Birgit
Hello,
There is an issue when RadGridView does not re-evaluate row item if filter property of viewmodel (datacontext of the row) was changed.
For example, RadGridView contains the FilterDescriptor to display all customers where address property is "Address1". It works fine i.e. RadGridView shows only customers where address property equals to "Address1. But then I'll change the address property of viewmodel item from "Address1" to "Address2". And I can see this row on GridView. Expected behavior is RadGridView should filter out customer where address property equals to "Address2".
Is here any workaround?
Thank you,
Yuriy.
Hi,
I tried to use "search as you type" on my GridViewComboBoxColumn. But it doesn't work.
When I type something on the search bar doesn't found anything on grid.
<UserControl.Resources> <CollectionViewSource x:Key="DirectionsCollectionViewSource" x:Name="DirectionsCollectionViewSource" /> </UserControl.Resources><telerik:GridViewComboBoxColumn UniqueName="Direction" Header="Direction" DataMemberBinding="{Binding Path=Direction, UpdateSourceTrigger=PropertyChanged}" SelectedValueMemberPath="Value" ItemsSource="{Binding Source={StaticResource DirectionsCollectionViewSource}}" DisplayMemberPath="Label"> </telerik:GridViewComboBoxColumn>
Collection View Source is populated with the following values:
List<SSCStringValueObject> directions = new List<SSCStringValueObject>(); directions.Add(new SSCStringValueObject("O", "Out"); directions.Add(new SSCStringValueObject("I", "In"); return directions;
Telerik version used: 2017.2.614.45
What am I missing? Can you provide me an example, please?
Thank you
Hi,
The following code works by searching text on telerik:RadGridView . It highlights all appearance of the text on all columns (i.e. 12 columns) of the data.
Our client requests to only highlight the appearance of the text on the specific 3 columns of the data. no highlights happen on the rest of columns of data no matter if it matches.
Can somebody help me out?
Thanks in advance.
Zhen
public void DoSearch(string text)
{
var grid = this.ExtendedControl;
var searchBytextCommand = RadGridViewCommands.SearchByText as RoutedUICommand;
searchBytextCommand.Execute(text, grid);
}

Hello,
In my code, for Raddiagram, default SettingsPaneHomeControl is used. In that there are options such as Bring to Front,Back,Forward,Backward.
Bring to Back, Front works properly. But Bring to forward, backward does not detect first click, and after second it works properly for some diagrams, and for some diagrams it does not work.
How i should i debug this?
Is there any way i can change its properties?
Thanks in advance.
