Hello,
SmartClient 7.0 PowerEdition (RC2)
Internet Explorer 7 and Firefox 3.5
When a SpinnerItem is in a DynamicForm canvas imbedded in a DynamicForm, the spinner increments/decrements by 2 while step is defined = 1
Here is a simple code example.
The S1 spinner increments/decrements correctly by 1 while the S2 spinner increments/decrements by 2.
Thank you,
SmartClient 7.0 PowerEdition (RC2)
Internet Explorer 7 and Firefox 3.5
When a SpinnerItem is in a DynamicForm canvas imbedded in a DynamicForm, the spinner increments/decrements by 2 while step is defined = 1
Here is a simple code example.
Code:
isc.DynamicForm.create({ name: "df2", width: 200, fields: [ { name: "s1", title: "S1", editorType: "spinner", defaultValue: 1, min: 0, max: 100, step: 1}, { name: "c", title: "C", editorType: "canvas", canvas: isc.DynamicForm.create({ name: "df1", fields: [{ name: "s2", title: "S2", editorType: "spinner", defaultValue: 1, min: 0, max: 100, step: 1}] }) } ] });
Thank you,
Comment