Hi,
I am looking to use the RadGridView for one of my winforms application, so I will as well be performing UI automation and writing UI test frameworks around the control.
I would like to know if this control supports accessibility and works with MSAA or UIA technology.
Hi,
I am looking to use the RadGridView for one of my winforms application, so I will as well be performing UI automation and writing UI test frameworks around the control.
I would like to know if this control supports accessibility and works with MSAA or UIA technology.
foreach (SchedulerCellElement cell in ???) |
{ |
if (cell.Selected == true) |
{ |
MessageBox.Show(cell.Date.ToString()); |
} |
} |
Hi,
Is Ribbon merging supported on Q1 2009 ?
Thanks in advance.
Dan.
Hello, I'm trying to switch cell is being edited based on selection in the current cell.
the current cell is a combobox column, if a paticular selection is made I'd like to put another cell in the same row into edit mode.
The code below seems to do that, however the selected value of the first cell is not persisted.
I'm assuming that's because the edit sequence did not complete for the initial cell.
Is there a better way to do this?
If TypeOf sender Is Telerik.WinControls.UI.GridComboBoxCellElement Then |
cell = RadGridView1.CurrentView.CurrentCell |
If RadGridView1.ActiveEditor.Value.ToString().ToLower() = "customexpression" Then |
ex_cell = cell.RowInfo.Cells("Expression") |
ex_cell.BeginEdit() |
End If |
End If |
Thanks