SmartGWT EE 8/31 nightly (although this was happening before). I have a ValuesManager with various forms as members. I use ValuesManager.editRecord(myRecord) to populate all of the forms from an existing record. When I use ValuesManager.saveData() the development mode console shows a long list of warnings that ...
The warnings appear, for each form, for all of the fields in the datasource that are not part of that form. I'm not setting values explicitly on any of the forms. Only via the ValuesManager. Everything otherwise seems to work except that the console fills up with a load of messages. And the errors only appear when ValuesManager.saveData() is called.
Code:
ValuesManager myValuesManager: Member Form: [myForm1] has explicitly specified value for field[s] 'aField', but has no item associated with this fieldName. Ignoring this value. Values may be set for fields with no associated form item directly on the valuesManager via valuesManager.setValues(), but not on member forms. See ValuesManager documentation for more info.
Comment