Rank: Administration Groups: Member
Joined: 4/3/2008 Posts: 25
|
This release includes the following: - Added a new event OnCheckedChanged that lets the developer add code when the GridViewTree's CheckBox is changed. Here is a sample: protected void GridViewTree1_OnCheckedChanged(object sender, GridViewRowEventArgs e) { int rowIndex = e.Row.RowIndex; string fullPath = this.GridViewTree1.TreeTable.Rows[rowIndex][0].ToString(); // etc... }
- Fixed a bug in .ClearData() that wouldn't allow the GridViewTree to rebind the data under certain circumstances.
|