or
							

Dim mCellPos As Integer = rgvItemsAndProps.CurrentCell.ColumnIndex            rgvItemsAndProps.BeginEdit()            For Each gr As GridViewRowInfo In rgvItemsAndProps.Rows                Dim y As String = gr.Cells(2).Value                If gr.IsVisible = True Then                    gr.Cells(mCellPos).Value = _ItemPropGridClipboard                End If            Next            rgvItemsAndProps.EndEdit()        End If

private void SetupRadGridviewRelation(){    GridViewRelation selfRelation = new GridViewRelation(this.radGridView1.MasterTemplate, this.radGridView1.MasterTemplate);    selfRelation.ParentColumnNames.Add("IdCol");    selfRelation.ChildColumnNames.Add("ParentIdCol");    this.radGridView1.Relations.Add(selfRelation);} public void LoadVariables {       foreach (var varModel in list)    {        var rowNum = radGridView1.Rows.Add(varModel.Id, varModel.ParentId, varModel.VarName, varModel.VarValue, varModel.VarUnits);        radGridView1.Rows[rowNum].Tag = varModel;    } }
Hello
I was looking for a way to set the active (default) child template in hierarchical radGridView programmatically.
but I could not find any property to set that.
Is there a way to do that?



Hello!
Mouse-wheel changes the value of read-only RadSpinEditor.
It seems this is a bug.
Thank you.
