SmartClient Version: SNAPSHOT_v12.1d_2019-08-06/AllModules Development Only (built 2019-08-06)
Chrome on OSX
Hello, please try this test case:
you'll see that the "Save" button doesn't have the declared width, while minWidth works, as in the "Cancel" button.
Chrome on OSX
Hello, please try this test case:
Code:
isc.DynamicForm.create({
ID: "exampleForm",
width: 250,
fields: [
{
name: "foo",
title: "Foo",
type: "text"
},
{
name: "buttons",
type: "toolbar",
height: 30,
buttons: [
{
name: "annulla",
minWidth: 120,
title: "Cancel"
},
{
name: "submit",
width: 120,
title: "Save"
}
]
}
]
});
Comment