Guys ,
May be a beginner question , but tried many way to accomplish same , but not getting in right format.
Can you guys help me on same
mylist=[{name:'Arjun', grade:'A'},{name:'Mithal', grade:'B'},{name:'Rakhi', grade:'C'}]
And am using gojs Table to iterate it (need table for iteration for various other reason)
$(
go.Panel,
'Table',
new go.Binding('itemArray', 'mylist'),
{
itemTemplate: $(
go.Panel,
'TableRow',
$(
go.TextBlock,
new go.Binding('text', 'name')
),
$(
go.TextBlock,
new go.Binding('text', 'grade')
),
)}
Something am looking for name in row1 and grade in row2. Below image is something am looking for
Need same thing in table
Can you guys please help me on same ?
Thanks in Advance