when I copy multi lines and paste into column filtering textbox,
grid just filter the first line and omit the other lines.
for example, I wanna filter the following lines:
"Ali
Vahid"
grid just filter Ali.
there is any way to filter multi lines?
Thanks.
Hello,
I have a RadGridView that groups its items by an ID. There is some filtering done that results in some of the groups only having one row in them. I am struggling to find a way to hide or filter out the groups that only have one item in them. Thank you for any suggestions or help.
Dear Sirs,
I'm working with RadVirtualGrid using DataProvider. I would like to position the filter icons in the header.
You'll find attached an image of what I have now.
Thanks in advance,
I'm converting from 2011.3.1116.35 to 2017-3-913.40. This works in the old version but not in the new version.
My RadGridView is bound to an ObservableCollection named DrugList, however the ComboBoxColumn is bound to a different ObservableCollection named BrandGenericCodeList. I'm trying to do the binding in XAML:
<UserControl x:Class="MyApp.ucDrug"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:telerikData="clr-namespace:Telerik.Windows.Data;assembly=Telerik.Windows.Data"
xmlns:telerikGrid="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
...
<telerikGrid:RadGridView x:Name="radGridView"
Grid.Row="1"
AutoGenerateColumns="False"
CanUserDeleteRows="True"
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding DrugList}"
ShowColumnFooters="True"
Deleting="radGridView_Deleting"
RowValidating="radGridView_RowValidating"
SelectionChanged="radGridView_SelectionChanged">
<telerikGrid:RadGridView.Columns>
<telerikGrid:GridViewDataColumn Header="Name" DataMemberBinding="{Binding DrugName}" />
<telerikGrid:GridViewComboBoxColumn Header="Brand/Generic"
DataMemberBinding="{Binding BrandGenericCode}"
DisplayMemberPath="Value"
IsLightweightModeEnabled="True"
ItemsSource="{Binding BrandGenericCodeList}"
SelectedValueMemberPath="Name"
UniqueName="BGC" />
Any help is appreciated. Thank you.
public
void
OnDragOver(
object
sender, DragEventArgs args)
{
...
if
( [disallow drag] )
{
args.Effects = DragDropEffects.None;
}
args.Handled =
true
;
}
Hello,
Is it possible to create 3D Pie Charts using UI Telerik for WPF library? In SDK Sample Browser I didn't find any sample regards it, meanwhile by this link https://docs.telerik.com/devtools/wpf/controls/radchart/features/chart-types/3d-charts I found it.
Could you please help with this question since on this depends question of purchasing of the WPF library
Kind Regards,
Vladimir