i want to override on radScheduler1_AppointmentEditDialogShowing how to override this method. because its automatically opened own appointment editdialog ;(


is there a way to Change the Default Text in the commandcell upon click
thanks in advance
I have a RadGridView which I've used the property builder to add several groups to.When I hide the group, it hides the columns within the group on screen, however when I export the grid to excel, the columns within the group are still visible.
Is there anyway of fixing this so that if the group is hidden, the columns within the group are not exported?
I already have:
Dim exporter As ExportToExcelML = New ExportToExcelML(Me.grid)
exporter.HiddenColumnOption = Telerik.WinControls.UI.Export.HiddenOption.DoNotExport
exporter.SheetName = "Export"
exporter.SummariesExportOption = SummariesOption.DoNotExport
Dim filename As String = "C:\Export.xls"
exporter.RunExport(filename)

Hello,
is there a way to change the width of specific GridViewIndentColumns? I'm trying to hide the very first IndentColumn in a Grid with 2 group levels. So far i tried changing one (or a combination) of the following 3 properties without any success:
private void GridView_ViewCellFormatting(object sender, CellFormattingEventArgs e){ var indentColumn = e.CellElement.ColumnInfo as GridViewIndentColumn; if (indentColumn != null) { switch (indentColumn.IndentLevel) { case 0: e.CellElement.Size = new Size(0,e.CellElement.Size.Height); indentColumn.Width = 0; e.CellElement.Visibility = ElementVisibility.Collapsed; return; case 1: indentColumn.Width = 20; e.CellElement.Size = new Size(20, e.CellElement.Size.Height); e.CellElement.Visibility = ElementVisibility.Visible; break; } }}Hi,
By inserting a radial gauge on my Form, the gallery is empty and I cannot select any type of gauge.
I have run the upgrade wizard for Winform and manually added the controls I want into the toolbox.
Why is the gallery empty ?
Thans for your help


Helloo all ...
How to fill textbox from MCCB selected to textbox ...
thanks