After completing an upgrade, when presented with the results page where each item has "What's Changed" this link is not clickable, when it should be according to http://docs.telerik.com/devtools/winforms/winforms-converter/step-by-step-tutorial
I've included a gif, that shows them, not showing as links, nor responding to clicks.

Hi
I'd like to customise the InsertHyperlinkDialog so that it only accepts links that start with http. Is there any way to do this?

I have a complex object and one of the variables is an enum. When I assign the object to the PropertyGrid's selected item, it generates a DropDownListEditor for the enum row correctly. However, the display text is automatically the ToString of the enum, which is not ideal for users to see and read. I want to change the display text to be the Description tagged to the enum values but I can't figure out a way to change what the DropDownListEditor displays or to update the values databound to the dropdown to achieve what I want.
public enum ExposureMode
{
[Description("Full Auto")] FullAuto,
[Description("Auto Filter, Fixed Exposure")] AutoFilFixedExp,
[Description("Fixed Filter, Auto Exposure")] FixedFilAutoExp,
[Description("Fixed Filter, Fixed Exposure")] FullFixed
}
So I want the Descriptions to be displayed instead of the ToString (i.e. "Auto Filter, Fixed Exposure" instead of AutoFilFixedExp).

HI,
Is there any way to update summary item row's cell from external data.
Regards
Harsha D
Hi all,
I am using GridViewRelation with Custom Cell:
Now when i loop rows i can not get cell element in gridview:
foreach(var row in gridview.rows)
{
var cell = gvLaborGuide.TableElement.GetCellElement(row, column);
}

Hi. I'm using v.2014.4.1104.40 and VS C#.
I was success to prevent the print processing form(page N of N form) by changing from
RadPrintDocument.PrintController = PrintControllerWithStatusDialog to StandardrintController().
In same way, I tried to change RadPrintPreviewDialog but I couldn't find the solution.
How to prevent(or disable) the print processing form of RadPrintPreviewDialog?
Best Regard
Hi.
I have List<RadPrintDocument> and each item is already filled with some contents(Text, image, and so on).
I want to insert or add these documents(or pages) to RadPrintPreviewDialog.Document of Iprintable class
for printing or saving the file.
Is it possible to insert or add them?
I searched and I coudn't find a solution of this problem.
(Need some examples)
Best regard
Hi Telerik,
I have been able to modify and add context menus to cells. However when the cell is being edited and I right click on it gives me a context menu that I can't seem to modify. Could you tell me how I can replace this context menu?
Cheers
Phil.


Hi,
how to create three items which have three different images. I read the previous answers, but I could not find the answer
//////////////////////////
DiagramListViewDataItem item = new DiagramListViewDataItem();
item.Key = "MyShape";
item.Shape = new AShape();
item.Group = radDiagramToolbox1.Groups[0];
radDiagramToolbox1.Items.Add(item);
//////////////////////////
But the above code is about custom shape not custom image!
