Hi,
I am facing an issue, where in on my all grids the position is same , but just on 1 grid the position of filter menu icon is different. Wanted to know how to rectify that.
attaching the screenshot.
I have a grid that has some columns that are bound to properties that come from an inherited class.
All properties display fine - whether they are from the base class or the inherited class.
The properties that come from the inherited class can not be sorted.
This sure seems like a bug, and I'd really rather not have to go the whole custom sorting implementation.

Hi,
we are facing more issues with the RibbonView
1. When it is used Large icon, the text is cut (look at Select All, it shows only Select, after resize it shows all text)
2. Group icons are shown strangely and are not resized to proper size (i set them as all icons for RibbonView from our font (vector)) look at after picture
3. Resize works strange, when the Large icon is made small or medium, the button is not aligned with those for orderedwrap panel ... (very bad) look at picture
4. From not known reason, the problem might lie outside RibbonBar responsibility, we cannot resize Window at left and right side of RibbonBar (the cursor is away) , on the title area the cursor is working ...
Hi,
Facing a strange issue, where in my check box filter shows just loading. This is only happening for 3 column filters on the grid, rest other grids don't have the issue. Attaching the pic for the same, please let me know how and what i can do to resolve this.
Regards,
Ankit Jain

Hi Telerik Team,
I suspect this is not using the ComboBox as intended and the AutoComplete behaves in a similar manner as it appears both controls expect all the data to be loaded and the filtering is down within the control on the superset of data.
However, I have a massive dataset and I want to use this as a traditional AutoComplete/Suggest control, so I am loading in all the (pre-filtered) data as the user types, the issue is as soon as I update the ItemsSource and there is 1 item that is a substring match (am using Contains) the control selects that item and clears the input text from the user.
Is there a way I can accept all user input without it being cleared until the user picks an item from the dropdown? Moreover, is it possible to not change the SelectedItem binding until a dropdown item is chosen "by the user" (not by the control)?
Thanks,
Maurice

Hi,
I want to highlight the row on dragover where I am dropping an item from the grid. I have two different gridviews. I drag a row from one grid and drop on to other grid row,
I have written following code for Highlighting a gridviewrow on a Item dragover,
public T4ShipmentSchedulerView(IT4ShipmentSchedulerViewModel viewModel)
{
InitializeComponent();
StyleManager.SetTheme(ShipmentGrid, new OWBTheme());
DataContext = viewModel;
viewModel.GridOperations = new TelerikGridOperations(ShipmentGrid, Constants.T4ShipmentBuilderGridSettings);
//ShipmentGrid.RowLoaded += ShipmentGrid_RowLoaded;
}
private void ShipmentGrid_RowLoaded(object sender, RowLoadedEventArgs e)
{
GridViewRow row = e.Row as GridViewRow;
if (row == null) return;
DragDropManager.RemoveDragEnterHandler(row, OnRowDragOver);
DragDropManager.AddDragEnterHandler(row, OnRowDragOver);
DragDropManager.RemoveDragLeaveHandler(row, OnRowDragLeave);
DragDropManager.AddDragLeaveHandler(row, OnRowDragLeave);
DragDropManager.RemovePreviewDropHandler(row, OnPreviewDropLeave);
DragDropManager.AddPreviewDropHandler(row, OnPreviewDropLeave);
}
private void OnPreviewDropLeave(object sender, DragEventArgs e)
{
OnRowDragLeave(sender, e);
}
private void OnRowDragLeave(object sender, DragEventArgs e)
{
GridViewRow row = sender as GridViewRow;
if (row != null)
{
row.Background = _backGround;
row.Foreground = _foreGround;
}
}
Brush _backGround;
Brush _foreGround ;
private void OnRowDragOver(object sender, DragEventArgs e)
{
GridViewRow row = sender as GridViewRow;
if (row != null)
{
_backGround = row.Background;
_foreGround = row.Foreground;
row.Background = new SolidColorBrush(Colors.Gold);
row.Foreground = new SolidColorBrush(Colors.Black);
}
}
It highlights the row on drag over but it messes with other trigger styles and they stop working. Do we have more proper soln on this.
Regards,
Vidyadhar

Hi,
I'm working on an Managed Addin Framework (MAF) based application in which the RibbonView is returned from the AddIn's appdomain to the AddIn-Host appdomain. The issue I'm facing is that when the RibbonView is converted to and from FrameworkElement/INativeHandleContract, it loses most of the functionality. On the host side, collapsing RibbonView doesn't properly resize. The ribbon view collapsed but some other control is taking the place and the controls below that do not get resized to occupy the whole space. I want the controls which are below the ribbon to occupy the space, as shown in the images attached.
The issue can be reproduced easily by following code sample:
RadRibbonView ribbon = new RadRibbonView();
ribbon.MinimizeButtonVisibility = Visibility.Visible;
ribbon.MinimizedChanged += Ribbon_MinimizedChanged;
var tab = new RadRibbonTab();
tab.Header = "Tab 01";
var group = new RadRibbonGroup();
group.Header = "Group 01";
var command = new RadRibbonButton();
command.Text = "Hello";
group.Items.Add(command);
tab.Items.Add(group);
ribbon.Items.Add(tab);
var contract = FrameworkElementAdapters.ViewToContractAdapter(ribbon);
var control = FrameworkElementAdapters.ContractToViewAdapter(contract);
presenter.Content = control;
And here is the sample xaml:
<Grid
x:Name="RootGrid"
Background="Azure"
ShowGridLines="True">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<ContentPresenter x:Name="presenter" />
</Grid>