How can I set the Recurring popup to also show Minutes (as well as what is already there)? I'm attempting to use this scheduler to essentially visualize various crons, and I need it down to the minute (it seems possible, I just haven't figured it out).
Thanks!

I have a winform application with several radgridviews. I have added export functionality, but do not see how to skip a column when exporting.
I did some research but nothing I found specifically shows / code examples of how this can be done in winform.
Here is my code.
GridViewSpreadExport spreadExporter = new GridViewSpreadExport(gv);
spreadExporter.HiddenColumnOption = Telerik.WinControls.UI.Export.HiddenOption.DoNotExport;
spreadExporter.ExportVisualSettings = true;
SpreadExportRenderer exportRenderer = new SpreadExportRenderer();
spreadExporter.RunExport(filename, exportRenderer);
I did try this:
radGridView1.Columns[0].ExcelExportType = Telerik.WinControls.UI.Export.DisplayFormatType.None;
and then calling the above code, but the column still shows up.
Why isn't there a simple property on the column ShowInExport we can set to True/False?
Thanks,
Roger

Hi,
I want to export radgridview to html. I used the way mentioned in this tutorial for exporting (with "RunExport" method). But how do I know if the export operation is complete?
And how can I apply style to whole table? the "HTMLCellFormatting" event works for each cell individually.
Thanks

Hi
How can I export RadGridview to html format?
Note: My gridview contains groups , summary row, and also image column.
Thanks so much
Hello,
I have a question regarding telerik maps.
I added several objects (rectangles) on a Telerik map to cover the whole map. However, sometimes the objects do not show & they appear when I use the mouse to zoom in/out.
Is there a way to resolve this issue?
Example of the map with objects missing attached.

Hello community
Attached is the German translation file for the scheduler.
It seemed to have been one of the comprehensive dialogs for a translation.
I hope it seems useful to you.
For free use. Have fun.

I have a list of items for a checkeddropdownlist, I don't want the user to be able to type in the dropdown. I'd like for them to ONLY be able to uncheck/check items I've predefined.
Essentially, I want what you do with the dropDownStyle property set to DropDownList for normal dropdownlist controls.

hi
i have tow problem
1-how to change backcolor all friday(days) on calendar(datetimepicker)
my code not work
private void radDateTimePickerStart_ElementRender(object sender, RenderElementEventArgs e)
{
if (e.Day.Date.DayOfWeek==DayOfWeek.Friday)
{
e.Element.BackColor = Color.Red;
}
}2-in atache image
title calendar not change CultureInfo("fa-IR", true);

