Hi there,
I've used Telerik grid inside an application.
I wanna to do something when the user changes the order of column groups (column group 1 and column group 2) by dragging them using a mouse. but I didn't find any solution for this.
So is there any event to detect reorder change for "column group"?

I want users to be able to modify columns width, order, pinned state, ... But at the same time, I have two grids in the same form one above the other and I would like to sync layout of both.
I have tried to use somthing like this, but it is not working:
foreach (var col in this.grid1.Columns)
{
this.grid2.Columns.Add(col);
}

how to insert data to live data ?
how to give background / fill color in live data chartview ?

void dataGridView_CurrentCellDirtyStateChanged(object sender, EventArgs e)
{
if ((dataGridView.IsCurrentCellDirty) & (dataGridView.CurrentCell.ColumnIndex == 0))
{
dataGridView.CommitEdit(DataGridViewDataErrorContexts.Commit);
}
} 
Hello,
Is it possible to display a RadGridView inside a cell? The grid should take data from cell (data will be splitted by columns and rows, not many, just a couple of rows per cell, 3 columns) I was considering examples of custom cells provided but without success. Could I get any clues how to proceed if it is feasible at all, please?
Thanks
Wojciech

I have several textboxes with the option to show clear button enable but I want to shoe the clear button only when a textbox is active by the user. Can this be done?
How can I get HorizontalScrollingOffset with RadGridView?
I'm trying to refresh the grid and keep the screen in the same horizontal position, I succeeded to do it in vertical position.
Thanks in advance
Amir

I'm opening the sub forms in panel on the main form. The short cut keys are getting focussed only on main form & not getting focussed on sub forms in it.
This is the code to open the sub form in a panel on the main form :
Public Shared Sub ShowForm(form As RadForm, Optional FormType As Integer = 0)
Dim i As Integer
form.TopLevel = False
frmMainMenu.rdpnlchild.Controls.Add(form)
form.BringToFront()
If FormType = 0 Then
form.Show()
ElseIf FormType = 1 Then
form.ShowDialog()
End If
End Sub

The code below does not trigger:
RadDesktopAlert.Popup.DoubleClick += Popup_DoubleClick;RadDesktopAlert.Popup.AlertElement.DoubleClick += Popup_DoubleClick;RadDesktopAlert.Popup.AlertElement.CaptionElement.DoubleClick += Popup_DoubleClick;RadDesktopAlert.Popup.AlertElement.ContentElement.DoubleClick += Popup_DoubleClick;Is there any way to capture a double click?

