or
Hello I am using RadGrid of 4 columns in my windows form , I would like to know how do i
horizontal display the third column as row below first and second and
fourth column
please help in order to swap the third column as row.
private void rgvFlatSaleEvents_FilterChanged(object sender, Telerik.WinControls.UI.GridViewCollectionChangedEventArgs e)


private void myGrid_UserAddingRow(object sender, GridViewRowCancelEventArgs e){ myGrid.CurrentRow.Cells[0].BeginEdit();}Telerik.WinControls.UI.Appointment app = (Telerik.WinControls.UI.Appointment)e.Appointment;DateTime ini = app.Start;DateTime end = app.End;//cancel Scheduler Edit/new built in dialoge.Cancel = true;//Pass the values to my new/edit dialog and show it.....foreach (RadItem ri in e.ContextMenu.Items){ ri.Visibility = ElementVisibility.Collapsed;}RadMenuItem rmi1 = new RadMenuItem("New / Edit Special Appointment");rmi1.Click += new EventHandler(rmi1_Click);RadMenuItem rmi2 = new RadMenuItem("Another Action");rmi2.Click += new EventHandler(rmi2_Click); e.ContextMenu.Items.Add(rmi1); e.ContextMenu.Items.Add(rmi2);