I am using the v1.2 DataGrid and I have scopeMap for my 1.2 version of Dojo, so that I can support multiple versions at this time. My view for my grid is as follows:
var layout = [
{field:"r0",name:"test",width:"auto"},
{field:"m0",name:"test2",width:"auto"},
{field:"m1",name:"test3",width:"auto"}
];
This works just fine. When I add the rowSpan to my view:
var layout = [
{field:"r0",name:"test",width:"auto",rowSpan:2},
{field:"m0",name:"test2",width:"auto",rowSpan:1},
{field:"m1",name:"test3",width:"auto",rowSpan:3}
];
I get the following error in my FireBug:
this.map[j + y] is undefined
and the grid does not render. I think this may be related to my scopeMap of Dojo, but I am unsure. Any thoughts would be helpful as I really want to use rowSpan. If there is something else I'm missing please let me know.
Thanks.
