If you check this simplified code in Chrome, you'll see that the button will be displayed in a second row. For some reason SmartClient generates a code with one more table row in Chrome. But not in IE and FF, where only one row is displayed. Is there a way to achieve this in Chrome as well?
Code:
isc.DynamicForm.create({
numCols: 2,
fields: [
{name:"file",type:"upload", showTitle:false},
{name:"submit",type:"button",title:"Upload", startRow:false}
]
});
Comment