Hi,
I would like to add a Dropdown in one of my Filtercells. Every entry in the Column should be displayed in this dropdown so the user can choose just elements which are already in the column of the grid. Is there a property to achieve this behaviour or do I have to create a Customcontrol to handle this?
Could you please send me a simple example how to solve this task?
Sincerely,
Dominik Zöbl
here is the scenario..
I am trying to create some wrapper classes for controls that display text such as labels, etc. What I am seeing is that I am copy and pasting the same font override function for each control.
Is there a recommended way of overriding the RadControl.Font and utilize that? The problem, is the wrapper class can only have a single base class.. MyRadLabel : RadLabel
any pointers would be nice. I hope I am just missing something small that I am not thinking of..
How can I center image and text of RadMenuItem when AutoSize is false? See attached screenshot.
Thanks..
Hello,
I am looking for a way to find all the images from a document and run them through a compressing do reduce the document size.
I found a way to find all images and I have the code to compress them but I am not sure how to replace the image after I find them.
foreach (Section section in this.radRichTextEditor1.Document.Sections)
{
foreach (Block block in section.Blocks)
{
Paragraph p = block as Paragraph;
if (p != null)
{
foreach (Inline inlineElement in p.Inlines)
{
ImageInline image = inlineElement as ImageInline;
if (image != null)
{
Telerik.WinControls.RichTextEditor.UI.BitmapSource bitSource;
bitSource = image.ImageSource;
}
}
}
}
}
Regards, Dan
I'm not using themes in my project yet but I would like this to work as if I were. I'm setting up some RadLabels to contain both the name of the piece of information and the value of it. I.E. RadLabel1.Text = string.Format("<html><color=Navy>Item Number: <color=Black>{0}", theItemNumber);
How can I get the color name for the text at the top of the RadForm (or any control's forecolor that is used to display text)?
Also, where I'm setting the color back to the default for the label, is Black the default or is there some place to find that color as well?
Thank you,
Gary
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.