Hi,
I have created a custom FilterCell for my Grid with a simple "FilterClear" Button.
At the beginning of my program, a custom theme gets loaded with changes of the button style. Now i do not want, that my filterclearbuttons looks like the other buttons. I tried to set loRadButtonElement:ElementTree:EnableApplicationThemeName = FALSE. but I get a compile error this way.
I also tried to set these properties of my button in my override CreateChildElements of my CustomFilterCell.
loRadButtonElement:ButtonFillElement:AutoSize = FALSE.
loRadButtonElement:ButtonFillElement:Size = NEW System.Drawing.Size(16,16).
loRadButtonElement:ButtonFillElement:Alignment = System.Drawing.ContentAlignment:MiddleCenter.
loRadButtonElement:BorderElement:AutoSize = FALSE.
loRadButtonElement:BorderElement:Size = NEW System.Drawing.Size(16,16).
loRadButtonElement:BorderElement:Alignment = System.Drawing.ContentAlignment:MiddleCenter.
I am able to change the style this way but it is not looking as expected.
i add two images of my current window and how I want it to look like.
It would be wonderful, if someone of you could tell me how to obtain the desired style without changing my custom theme
Sincerely,
Dominik

Hi:
I am currently using the flowlayoutpanel in a Winforms application to build a horizontal timeline of thumbnail images. This can contain several hundred thumbnails (as many as 500). I've included a screenshot...
The problem with flowlayoutpanel (as well as the .net panel control) is that once the thumbnail layout becomes wider than 32,767 pixels, the control will no longer populate. This is a big problem for my application. Attempts to work around this have thus far been unsuccessful due to complexity and extremely poor performance.
Does Telerik have a scrollable panel that will allow me to populate with more? If so I will purchase immediately!
Des

Hi
I implemented a (custom item - radListview) in a Listview using CustomDetailListViewDataCellElement
the view type of the parent ListView is Detailview and a data set is bounded to it
I want to fill the custom listview inside the parent listview with data
I can fill it with data at creation time
but after the cell has been created , I can't
I don't know how to reach it

How do you get access to the Root Logical Operator value? For example, I want to do this
RadDataFilterDialog dialog = new RadDataFilterDialog();
dialog.ShowDialog();
//string expression = dialog.DataFilter.Expression;
//Doesn't work
DataFilterRootNode dfRn = dialog.DataFilter.Nodes[0] as DataFilterRootNode;
if (dfRn != null)
{
var rootLogicalOperator = dialog.DataFilter.Nodes[0].LogicalOperator;
}
//Doesn't work
var rootLogicalOperator = dialog.DataFilter.Nodes[0].LogicalOperator;
dialog.DataFilter.Nodes[0] in the debugger indicates it's of type DataFilterRootNode but if I try to cast to that type to access the LogicalOperator value it gives error Error CS0122 'DataFilterRootNode' is inaccessible due to its protection level
So how do I access the root LogicalOperator value?



Hi,
All the examples I have seen are all about identifying the row of a target GridView where an item has been dropped onto.
But I need to identify the column as well. Is there a way to do this given only the e.HitTarget from the RadDropEventArgs i.e. in
void dragDropService_PreviewDragDrop(object sender, RadDropEventArgs e)
Thanks for any help.

Hi, we use the rich text editor with the ribbon bar that has all the options to edit the text, we can select the font size from the drop down, but this only have integer values, we need it to be able to type the size we desire (in this case with decimals), well at least we need a .5 (8.5, 9.5, 10.5, 11.5 and 12.5)
Is there a way to achieve this? Please
I'm using 2017 Q1
Thank you all.
