Hello,
I'm using Q1 2017 radcontrols for winforms (vb.net).
I have a radporama with a radtile, and a radpropertygrid, with the radtile as selectedobject.
When i set an image to the radtile using the radpropertygrid, everything works fine. But i dont know how to reset the image to nothing. If i select the image in the radpropertygrid, and the press "delete" on my keyboard, nothing happens.
I need a solution without clicking on the square and reset.
Could you help me?
Thanks in advance.
Best regards.
Hello,
I'm using Q1 2017 radcontrols for winforms (vb.net).
When you bind the radpropertygrid to an objet that have a font property for instance, you have in the radpropertygrid an arrow appearing.
My question is : is-it possible to disable or hide the "plus" sign ?
Thanks in advance.
Best regards.


Hi,
i would like to change the color of my tileElement in runtime (property defined by user), but i would like to keep the effect of the tileElement (another color define for mouseover)
Is there any way ?
Hi,
i made a custom filtering in my Grid. I have a FilterCell with a "FilterClearButton" and I confirm my FilterCellEntry with the Keys "Enter" or Tab.
I also set these properties:
loGridFilterCellElement:FilterButton:Visibility = Telerik.WinControls.ElementVisibility:Collapsed
loGridFilterCellElement:FilterOperatorText:Visibility = Telerik.WinControls.ElementVisibility:Collapsed
When I leave my Filtercell(CellEndEdit Event), I make a new Filterdescriptor.
loFilterDescriptor = NEW Telerik.WinControls.Data.FilterDescriptor().
loFilterDescriptor:Operator = Telerik.WinControls.Data.FilterOperator:Contains.
loFilterDescriptor:PropertyName = poGridViewDataColumn:Name.
loFilterDescriptor:IsFilterEditor = TRUE.
loFilterDescriptor:VALUE = poVal.
and add it to the FilterDescriptorCollection of my Grid.
THIS-OBJECT:FilterDescriptors:BeginUpdate().
THIS-OBJECT:FilterDescriptors:Add(loFilterDescriptor).
THIS-OBJECT:FilterDescriptors:EndUpdate().
So far, there is no problem but if I filter a column for "Dom" and in my Grid there are two entries in this column with "Zöbl Dominik" and "test user" the Grid is empty. But if I enter "Zöb" in my Filtercell and leave it, the Entry "Zöbl Dominik" is shown in my Grid.
I think i have missed some property or other setting. It seems like it is filtering with "Begins" and not contains but I already iterated through oll the FilterDescriptors of my Grid and all are with "Contains".
I know it is not easy to help me in that case because I made a lot of these extras myself but does anybody have an idea what i have made false?
Sincerely,
Dominik Zöbl

I need to pivot the the Day View so that my resources show up along the left vertical column and the time of day is horizontal across the top.
Using your example provided here.... http://docs.telerik.com/devtools/winforms/scheduler/views/grouping-by-resources#grouping-by-resources-in-different-views
..as a reference point...
Alan and Ann are stacked along the left side of the view. And the times 0300-1600 are laid across the top.
Thank you in advance.
-Scott
dear all, i m facing the following issue when i pressed shortcut key which is "Ctrl + F" register in my application using the following code.
[code]
this.grdMain.GridViewElement.Shortcuts.Add(new RadShortcut(Keys.Control, Keys.F));
this.grdMain.GridBehavior = new ModifiedGridActions();
[/code]
and overriding the keyprocess function in grid behaviors using the following code
[code]
public class ModifiedGridActions : BaseGridBehavior
{
public override bool ProcessKey(KeyEventArgs keys)
{
try
{
if (keys.Control && keys.KeyCode == Keys.F) // issue on this line
{
this.GridControl.MasterView.TableFilteringRow.Cells["cName"].BeginEdit();
}
}
catch (Exception ex)
{
}
return base.ProcessKey(keys);
}
}
[/code]
when i press ctrl + f above override function triggers but its parameter only contains keys.control is true and keys.keycode property contains 17 which also ctrl code. what i expect is to get keys.control is true and keys.keycode should contains keys.F so that my logic can execute am i implementing somthing wrong.

| ToolWindow window = new ToolWindow(); |
| _documentTabStrip.Controls.Add(window); |
| window.Tag = "Tag"; // Here I assign a tag |
| _radDock.DockControl(window, DockPosition.Top, DockType.ToolWindow); |
| // The Tag property of the docked toolwindow is null (_radDock.ToolWindows[0].Tag is null) |
Is there any way to find the docked window in the _radDock to set its Tag.
Please help.
Burhan Eyimaya
