
Hello,
I'm contacting you because I would like help. I created a CustomEditor that inherits BaseGridEditor. I also created a CustomElement that inherits from LightVisualElement. In this element, I have a DockLayoutPanel which contains on the left a RadDropDownListElement, on the right a RadButtonElement and the rest of the space contains a RadMaskedEditBoxEditorElement. The DropDownListElement contains 2 items.
The problem is that when I edit the cell, my CustomElement appears but the DropDownListElement is not resized.
If I replace the Dock panel with a StackLayoutElement it's ok but the stacklayoutpanel's width is divided into 3 equal parts.
How to use DockLayoutPanel and autosize?
Thank you


Hi,
I'm currently new to Telerik, which my company used in the past. One of my first task is to upgrade and copy a project by manually rewriting the files to avoid publishing issues. I came across an error which I can't seem to find the solution. It appears that Pdf class is no longer under Telerik.Windows. I see that there's a Telerik.Pdf now but I can't seem to figure out what to use to make my project error-free. Can anyone help me with this?
Visual Studio Error at the beginning of my form:
using Telerik.Windows.Pdf.Documents.Fixed.Model.Navigation;
Severity: Error, Code: CS0234, Description: The type or namespace name 'Pdf' does
not exist in the namespace 'Telerik.Windows' (are you missing an assembly
reference?), Project: Label Printing PVC, File:C:\Users\Lily\Documents\Visual Studio
2017\Projects\Label Printing PVC\Label Printing PVC\APrintLabelSystemProdGroupNew.cs, Line 10, Suppression State: Active

I'm trying to alter a datetime column in my radgridview object.
I need it to be shown as followed:
<Year Quarter of year>
For example the dateTime value of" '28/5/2012' shold be shown as: '2012 Q2'.
I undetstand that i need to changed it with a custmize FormatProvider and also to edit the values of the cells in radgridView1_CellFormating.
I also declared the custmize FormatProvider.
But how do I connect that formatProvider to that specific dateTime column ?
Thanks!

Convert radGridView column after binding to a Hyperlink?
How can I do this? When I converted to a radGridView the same type conversion gave errors on compile.
With DataGridView control I was able to access a cell and change it to a hyperlink
using very similar code to this:
01.void dataGridView1_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)02.{03. foreach (DataGridViewRow r in dataGridView1.Rows)04. {05. if (System.Uri.IsWellFormedUriString(r.Cells["Contact"].Value.ToString(), UriKind.Absolute))06. {07. r.Cells["Contact"] = new DataGridViewLinkCell();08. // Note that if I want a different link colour for example it must go here09. DataGridViewLinkCell c = r.Cells["Contact"] as DataGridViewLinkCell;10. c.LinkColor = Color.Green;11. }12. }13.}
Hello everyone,
When I design GridViewDecimal Column, I don't want to use automatic data filling. How can I turn it off? Who can help me? Thank you very much.
Specifically as follows: picture_gridview
Hello,
I cannot modify textalignment for a radlabel in designer time. Whichever kind of textalignment I change, it is always fixed in TopLeft. And I cannot change it back any more.
PS. I'm using the latest version of Telerik library. And I've tested in Visual Studio 2017 and Visual Studio 2019.
Thank you by advance.
Hi,
I am evaluating your WinForms control suite to see if I could use it for a project I'm working on. I'm trying to create a custom editor in a GridView that would allow me to have a searchable ComboBox where the users can add/rename items right from the editor. First I tried to add an element while in edit mode based on an forum thread I saw (I added a TextBox in addition to the combobox) but I cannot get it to allow focus on the textbox in addition to the ComboBox. Is there a better way to achieve having a ComboBox AND TextBox together in the same editor? Or do you have a better idea of how I could achieve the user story of allowing the user to add/rename items from the ComboBox right from the grid without having another form? From what I'm seeing it looks like the GridBaseEditor just allows one EditorElement not two. Any help you could provide would be appreciated.
Thank you for your time.
