I have tried all sorts of things and I can get this to *almost* work.
I have a grid with "stacked" data entry columns, as such it can be a little tricky to see which one you are in.
I am wanting to highlight the header column for whichever column I am in, sort of like Excel does.
I can change the individual header colors through checking:
if (e.CellElement is GridHeaderCellElement || e.CellElement is GridGroupContentCellElement)
{
if (e.CellElement.ColumnInfo.Name == "podName")
But I cannot seem to get it to work just when I am in that cell.
I have tried setting a variable telling me when the cell is selected by doing something like:
private void radGridView1_CurrentCellChanged(object sender, CurrentCellChangedEventArgs e)
{
var test = e.NewCell;
if (test.ColumnInfo.Name == "podName")
{
//currentcolor = System.Drawing.Color.Black;
currentCellIs = 1;
But that does not work correct either.
Has anybody else done this or have any suggestions?
Thank you,
Joe

Hi All,
I have a RadPanel on my form, and it contains several rad buttons, a toggle switch, etc. I noticed that in order to get a theme to be applied to the child controls, I have to set it individually on each one. I was expecting that if I set the theme on the parent panel, that the child controls would all use it as well. I just wanted to make sure that I'm not doing something wrong here...am I supposed to set the theme separately on all child controls within a panel? Thank you!

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)
