Hi,
I just started using Telerik's awesome controls. I really like the RadDock. Everything that I have played with so far is great. However, I am wondering if it's possible to run different threads in different DockWindows? If so, can you post some code to get an idea on how to do it? This is the scenario I have right now:
So I am not sure what is possible:
What I am looking for is so that the user can build a long running report, while he can continue to work in a different DocumentWindow. I hope this makes sense.
Thanks,
Carlitos
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