Hi,
I have to add a ContextMenu to my MultiColumnComboBox. I already added a Winforms ContextMenuStrip and also set the ContextMenu Property.
Now when I click on my dropDownButton of the ComboBox the right ContextMenu is shown but if I click in the middle of the textboxelement of the Combobox I get another one I do not want. Setting the ContextMenu of the textboxelement doesnt change that behaviour.
THIS-OBJECT:MultiColumnComboBoxElement:TextBoxElement:TextBoxItem:HostedControl:ContextMenuStrip = THIS-OBJECT:contextMenuStripMain
Does anyone have an idea how to solve this ?
Sincerely,
Dominik
Hello
- Are there means to style hyperlinks in a html formatted RadLabel similar to css (.hover, .visited etc.)? couldn't find anything in the docs.
- When using a RadLabel with a hyperlink on a Rad Doc Document, the link seems to stay in .active mode after the webpage has opened. When I reopen the document the link goes into .visited style (as expected). I'd like it to revert to initial state or go into .visited state.
Regards
Erwin
Hello,
I am new to use your program. I want to add simple table with 2 columes and multiple rows. Do you have any example ??
Regards,
Dani
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?