Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~3K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for fkatan

Hello all I also want to contribute a quick tip here you can also get tutorial with code example here http://www.dapfor.com/en/net-suite/net-grid/tutorial

Member Avatar for harsh01ajmera
0
3K
Member Avatar for tamerhanna

I think you should use some advance data bindg methods. //Build a header with columns grid.Headers.Add(new Header()); grid.Headers[0].Add(new Column("IntValue")); grid.Headers[0].Add(new Column("DoubleValue")); grid.Headers[0].Add(new Column("StringValue")); //Add data object at the top-level and attach 2 children of the same type Row row1 = grid.Rows.Add(new MyCustomClass(10, 11.11, "item 1")); row1.Add(new MyCustomClass(11, 11.22, "subitem 1")); …

Member Avatar for mtroli
0
507

The End.