SmartClient Version: v12.1p_2020-10-11/Enterprise Deployment (built 2020-10-11)
Chrome on OSX
Hello, I noticed that buttons in a toolbar have autoFit:true as default even if a width is specified, see test case:
Chrome on OSX
Hello, I noticed that buttons in a toolbar have autoFit:true as default even if a width is specified, see test case:
Code:
isc.DynamicForm.create({
ID: "timeForm",
wrapItemTitles: false,
fields: [
{
name: "myToolbar", type: "toolbar",
buttons: [
{
width: 250,
title: "default"
},
{
width: 250,
title: "no autofit",
autoFit:false,
}
]
}
]
});
Comment