Hello everyone.
Is it possible to add context menu (RadContextMenu or System.Windows.Controls.ContextMenu) to filtering control in RadGridView?
I need to implement copy and past functions on textboxes in the FilteringControl.
It is the sample where I try to do this ( https://drive.google.com/file/d/0B1j-40J5aVOfSEctRHdZYnh3RjA/view?usp=sharing ).
There are ContextMenu in UserControlWithMenu and in FilteringControlEx, but both of them doesn't appear on right mouse click.
When Mouse is on a recurring, it show tooltip.
However when case 'Recurring task on single row', it doesn't show tooltip.
How can I make it to show tooltip when 'Recurring task on single row'?
Hi,
I want to show one empty row at the end of the RadGridview when it is loaded when the data is empty.How to achieve this.I tried like shown below but no use
if(collection.Count ==0)
{
var itemsView = (IEditableCollectionView)CollectionViewSource.GetDefaultView(SyncObjects);
itemsView.NewItemPlaceholderPosition = NewItemPlaceholderPosition.AtEnd;
}
Once after loaded user will add data using add button.Now the grid is appearing as shown in the image where only headers are coming and it is not appealing like grid.
I want one empty row once it is loaded when no data exist.How to achieve this.
Hi I am having combobox in the GridViewData column and i am binding the ItemSource with one of the property present on the class binded to the radgridview itemsource collection.For example I binded radgridview with list of employees.Employee is a class and I binded the combobox itemsource with dependants property which is one of the property on the employee class.
But the combobox is not populating.DataContext of RadGridView is separate and it is another viewmodel class.
<telerik:GridViewDataColumn.CellEditTemplate> <DataTemplate> <telerik:RadComboBox x:Name="ComboBox" SelectedIndex="0" Height="20" Width="150" ItemsSource="{Binding Items,RelativeSource={RelativeSource AncestorType=telerik:GridViewRow}}" ItemTemplate="{StaticResource RadComboBoxItemTemplate}" SelectionBoxTemplate="{StaticResource SelectionBoxTemplate}"> </telerik:RadComboBox> </DataTemplate> </telerik:GridViewDataColumn.CellEditTemplate>
Hi,
I have a real simple grid prototype. Works fine until I group by a column. When any grouping applied the area below the header row is blank although the gridview seems to be resizing as expected. I think this is a rendering issue.
More details:
Images attached show the before and after. Notice that the size (border) of the grid changes as expected.
Code fragment:
<Grid xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <telerik:RadGridView Grid.Row="0" ItemsSource="{Binding Variables}" GroupRenderMode="Nested" AutoExpandGroups="True" AutoGenerateColumns="False"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn DataMemberBinding="{Binding Type}" Header="Type" IsGroupable="True"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding Name}" Header="Name" IsGroupable="False"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding Index}" Header="Index"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding BriefDescription}" Header="Description" IsGroupable="True"/> </telerik:RadGridView.Columns> <telerik:RadGridView.GroupDescriptors> <telerik:GroupDescriptor Member="BriefDescription" SortDirection="Ascending" /> </telerik:RadGridView.GroupDescriptors> </telerik:RadGridView> </Grid>Any ideas?
Hello,
I've implemented 2 years ago a CustomDockingPane to work with Catel MVVM pattern but reviewing the code looks like a ...hum... Code smell...
I was wondering if I'm the only one which use those 2 framework together or is there anyone who can share his implementation with me
I've asked in the past and also sent ticket to Telerik support but they don't know the Catel Framework so well...
so...anyone alive?
Thanks
Hey
I have some problem with Kendo.Grid()
I wanna add filter for some column value then is NULL.
Code here:
x.Ajax().Read(r => r.Action("DataSource", "SRV_Service", new { area = "SRV" }))
.Filter(f => f.Add(s => s.PID).IsEqualTo((Guid?)null))
Datasource when i use null value filter.
https://resimyukle.xyz/resim/KU48JA
MVC Enums for filter operators
public enum FilterOperator
{
IsLessThan = 0,
IsLessThanOrEqualTo = 1,
IsEqualTo = 2,
IsNotEqualTo = 3,
IsGreaterThanOrEqualTo = 4,
IsGreaterThan = 5,
StartsWith = 6,
EndsWith = 7,
Contains = 8,
IsContainedIn = 9,
DoesNotContain = 10
}
And your "Operator used in FilterDescriptor" keys has IsNull operator
http://docs.telerik.com/aspnet-mvc/api/Kendo.Mvc/FilterOperator
How can i do append IsNull operator on Kendo.Mvc.FilterDescriptor ?
Please help me

Hi,
I want to add button at the end to drop down in AutoCompleteBox. Can Any one suggest me the best approach.
Regards,
Viswa Teja.
Hi!
Last two days I have been recording tests on Web types and Wpf types separately
Seems like 'random name generator' is working fine in Web Type test. But is it possible to use random ‘DataBindVariableName’ from Web types test to Wpf Type test?
Thanking you!
Kind Regards
Sheerin