tomo como referencia los combos dependientes categoria y subcategoria
este es el json que devuelvo, pero a la hora de cargar el combo categoria me sale el siguiente error
Cita:
lo que quiero hacer es que cargue todo el json mostrado de manera que pueda jugar con el javascript sin acceder a base de datos a cada rato. dijit.form.ComboBox: Error: dojo.data.ItemFileReadStore: The json data as specified by: [dd.json] is malformed. Items within the list have identifier: [codCat]. Value collided: [1]
Cita:
alguien que me pueda ayudar. {
identifier:"codCat",
label:"desCat",
items:[
{
codCat:1,
desCat:"I. DESARROLLO",
children:[
{codSubCat:1,
desSubCat:"Activity","codCat":1
},
{codSubCat:2,
desSubCat:"Aplicativo LSA",
codCat:1
},
{codSubCat:3,
desSubCat:"Otros",
codCat:1
},
{codSubCat:4,
desSubCat:"Servicio GPS",
codCat:1}]},
{
codCat:2,
desCat:"R. DESARROLLO",
children:[
{codSubCat:5,
desSubCat:"Activity",
codCat:2
},
{codSubCat:6,
desSubCat:"Modificación de datos",
codCat:2},
{codSubCat:7,
desSubCat:"Otros",
codCat:2},
{codSubCat:8,
desSubCat:"Reportes",
codCat:2},
{codSubCat:9,
desSubCat:"Requerimiento de SW",
codCat:2}]}
]
}
identifier:"codCat",
label:"desCat",
items:[
{
codCat:1,
desCat:"I. DESARROLLO",
children:[
{codSubCat:1,
desSubCat:"Activity","codCat":1
},
{codSubCat:2,
desSubCat:"Aplicativo LSA",
codCat:1
},
{codSubCat:3,
desSubCat:"Otros",
codCat:1
},
{codSubCat:4,
desSubCat:"Servicio GPS",
codCat:1}]},
{
codCat:2,
desCat:"R. DESARROLLO",
children:[
{codSubCat:5,
desSubCat:"Activity",
codCat:2
},
{codSubCat:6,
desSubCat:"Modificación de datos",
codCat:2},
{codSubCat:7,
desSubCat:"Otros",
codCat:2},
{codSubCat:8,
desSubCat:"Reportes",
codCat:2},
{codSubCat:9,
desSubCat:"Requerimiento de SW",
codCat:2}]}
]
}
PD: como seria con 3 combos dependientes.
Gracias de antemano