Hi,
I have a form with datapaths:
When I click on the first field checkbox, the form is redrawn and value 'true' erroneously appears in the second field.
I have attached a html testcase with this form, to be dropped in SDK folder.
I'm using SmartClient LGPL 8.0.
On a related note, this form doesn't work with the latest nightly builds (checked with 2011-04-27). It seems to reject any changes.
I have a form with datapaths:
Code:
var form = DynamicForm.create({
fields: [
{ dataPath: "some/path", title: "Something", type: "boolean", redrawOnChange: true },
{ dataPath: "some/other/path", title: "Another thing", type: "integer" },
],
});
I have attached a html testcase with this form, to be dropped in SDK folder.
I'm using SmartClient LGPL 8.0.
On a related note, this form doesn't work with the latest nightly builds (checked with 2011-04-27). It seems to reject any changes.
Comment