How to set value on nested label

Hi,

How can I access the label with id “edit4” to change the value in the code below?

var stats = {
height: 198,
type: “form”,
cols:[
//{ view:“icon”, icon: “wxi-pencil”, align:“left” },
{ rows: [
{
cols: [
{ view:“label”, css: “edit1”, class: “edit1”, label: “Edit1”, inputWidth:100, align:“left” },
{ view:“label”, label: “Edit2”, inputWidth:100, align:“right” },
]
},
{
cols: [
{view: “label”, label: “Edit3”, inputWidth: 100, align: “left”},
{view: “label”, id: “edit4”, label: “Edit4”, inputWidth: 100, align: “left”},
]
}
]
}
]

}


var loanDashboard = {

view:“dashboard”,
id: “myDashboard”,
gridColumns:4, gridRows:3,
cellHeight: 200, cellWidth: 200,
cells:[
{ view:“panel”, x:0, y:0, dx:1, dy:1, body: stats },
{ view:“panel”, x:1, y:0, dx:1, dy:1, body:{
template: notificationStats
}},
{ view:“panel”, x:2, y:0, dx:1, dy:1, body:{ template:“Single”}},
{ view:“panel”, x:3, y:0, dx:1, dy:1, body:{ template:“Single”}},
{ view:“panel”, x:0, y:1, dx:2, dy:1, body:{ template:“Wide”}},
{ view:“panel”, x:2, y:1, dx:2, dy:1, body:{ template:“Wide”}},
{ view:“panel”, x:0, y:2, dx:2, dy:1, body:{ template:“Wide”}},
{ view:“panel”, x:2, y:2, dx:2, dy:1, body:{ template:“Wide”}}

]

}

Thanks,
-S

Hi,

I figured this out. It was just an issue elsewhere in the code.

Thanks,
-S