Closed angelocala94 closed 9 years ago
You have two nested structs so:
var options = {
fields: { // TestList is a struct..
list: { // ..with a "list" field..
item: { // ..which is a list of..
fields: { // ..Test structs
field1: {
label: 'label field1'
},
field2: {
label: 'label field2'
}
}
}
}
}
};
Thanks.
I have this:
How can i set the fields label for field1 and field2?