Is there a way to fill a Column of an dojox/grid/EnhancedGrid with SubObjects in a JSON Structure? For example if i have a JSON-Row that is looking like:
{
id: 2,
name: "TestItem2",
created: {
date: "2013-03-28 11:59:40",
timezone_type: 3,
timezone: "Europe/Berlin"
}
}
and I want to fill a Column of the Grid with "date" in SubObject "created". I already tried something like setting the Column's "field" property to "created.date" in the Grid's "structure" Property, but that didn't do the job.