Relevant part of the fconf:
'tblCollection' : {
label : 'myCollection',
base : 'collection',
control: 'collection-control',
child: {
members: {
'id' :
base: 'integer',
control: {
base: 'input-control',
initial: {'enable': false}
}
}}}}
With this fconf, I get the following error while the collection-control is being built (I tested this in FF and IE):
[Exception... "'[ConstructorRegistry?.get] No registered constructor found: composite in registry ConstructorRegistry?: Registry of [Form] controlTypes' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "<unknown>" data: no]
This collection-control works fine if I leave out the following part:
control: {
base: 'input-control',
initial: {'enable': false}
}