Hi
I'd like to add custom rows that have a single button on them. I've managed to get a custom row with a button showing instead of the new row as per your documentation, but I'd like to get it showing elsewhere. My grid is not data bound - I'm programatically adding rows to it and I'd like to programatically add the custom row at certain positions. My grid includes a single level of grouping, so I'd need to be able to add the row to a specified group. I'd also like to be able to use different button text in some cases and to pass the button click event up to the form that the grid is on. How do I do this?
Thanks

Hi,
I was wondering if there is a way to use tooltips on a line series instead of a trackball. For example if i clicked on a certain line series in a multiline series chart, the information for that point of the line series would be displayed to the user?
Thank you.

I've got a few RadDateTimePickers which are all bound to various data sources. Some of them have a null value, some have values, which all display fine - however the issue I am having is that when you click the field to select a date, the default date that is selected is from when I added the control to the form.
This should be today's date, however the value of the field should remain null until the user has clicked a date. They do need to be able to select a date in the past/future though as well.
I'm using the latest version of Telerik UI for WinForms on a VB.net project.
Any help would be much appreciated.
Thanks, Shane


How to make it to catch ChartViewSelectedChanged event? Seems to work for other chart types such as cartesian or pie..
public Form1(){ InitializeComponent(); radChartView1.Controllers.Add(new ChartSelectionController()); radChartView1.SelectionMode = ChartSelectionMode.MultipleDataPoints; radChartView1.SelectedPointChanged += new ChartViewSelectedChangedEventHandler(OnChartSelectedPointChanged);}private void OnChartSelectedPointChanged(object sender, ChartViewSelectedPointChangedEventArgs e){ PolarDataPoint pt = e.NewSelectedPoint as PolarDataPoint; if (pt == null) return; System.Diagnostics.Debug.WriteLine(" angle = " + pt.Angle + " value = " + pt.Value);}

Hello,
my goal is to print a PDF-File directly to a printer without showing the print preview.
This is what I tried:
rpd = new RadPrintDocument();
rpd.PrinterSettings.PrinterName = "printer";
rViewer = new RadPdfViewer();
rViewer.LoadDocument(sFileName);
rViewer.DocumentLoaded += rViewer_DocumentLoaded;
static void rViewer_DocumentLoaded(object sender, EventArgs e)
{
//rViewer.PrintPreview(rpd);
rViewer.Print(false, rpd);
}
When I send it directly to the printer ( rViewer.Print(false, rpd); ) it always prints it in portrait-format.
When I use rViewer.PrintPreview(rpd); and then press the Print-Button, it works.
Does anybody have an idea? Thank you!


Hello Telerik Community,
Does anybody know a way to add a tooltip to the column chooser? I know it is not a matter of life or death, but, in one of my projects i condensed a little bit some column header names, and now, when they are on the column chooser nobody, including me, is able to deduce which is the column content :( .
Would be possible to get some reference to the column chooser and add a tooltip to each column?
Best Regards
Andrea
Hello everybody!
Is it possible to display a summary item just as a task item?
I want to have a hierarchy of task all looking the same.
Thanks,
