No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Re: 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 | |
Re: 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")); … |
The End.