Click here to Skip to main content
15,899,475 members

Comments by Rajesh R. Sharma (Top 2 by date)

Rajesh R. Sharma 12-May-15 11:06am View    
I have define a data objec as follows :
public class MyData
{
public BindingList<mydata> childStrategy { get; set; }

public int ID { get; set; }
public string Name{ get; set; }
public int ParentID { get; set; }
}
While loading I used recursion to properly prepare the data.Finally I bind the data with the grid.It worked but I want a better way.
Rajesh R. Sharma 12-May-15 10:13am View    
Can u provide a code sample ??