[CODE]
...
dataList.Add( new { Name = item.Name, Comment = item.Comment, Fields = 11 } );</PRE>Store.DataSource = dataList;
Store.DataBind( );
[CODE]</PRE>[CODE]
...
dataList.Add( new { Name = item.Name, Comment = item.Comment, Fields = new int{ 11,12,13} } );
Store.DataSource = dataList;
Store.DataBind( );
[CODE]</PRE>The first store can send Fields attribute to client, but the second condition is not working.
Can store send object recursively?</PRE>Thanks</PRE>