or
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.
lblInfo.Text =
"<html><span><a href=" + url + ">Getting Started Guide</a></span></html>"
I have to problems:
1. The url is pointong to pdf file. If pdf file is not installed it does not give any error, link just does not work without any indication that it attempted to open the file.
2. The of the link is 3 words with spaces. They are shown three separate links. The screenshot is attached.
Thank you
Lily
DirectCast(.rgrb_CountryOfOrigin.GroupBoxElement.Children(1).Children(1), BorderPrimitive).ForeColor = Color.Red
foreach (GridViewRowInfo row in grd.MasterGridViewTemplate.Rows) |
{ |
DataRow dr = ((System.Data.DataRowView)(row.DataBoundItem)).Row; |
dr.EndEdit(); |
} |