SmartClient Version: SNAPSHOT_v13.1d_2022-10-05/AllModules Development Only (built 2022-10-05)
Chrome on MacOS
Hello, I just noticed that in the showcaseApp sample there's a comment in the js code (updateDetails function) which seems to refer to an unexpected behaviour or bug, could you please check it?
I was trying DynamicForm.linearMode: true, (on desktop) like this:
and I saw that the form overflows and appears an horizontal scrollbar:
is it a bug?
Also, I've tried different values for linearNumCols, but I don't see a difference, is it a bug or am I missing something?
Then I've got a a little suggestion for the sample: if you add to the DynamicForm
and remove the fixed width, the form will look much better on mobile.
Chrome on MacOS
Hello, I just noticed that in the showcaseApp sample there's a comment in the js code (updateDetails function) which seems to refer to an unexpected behaviour or bug, could you please check it?
I was trying DynamicForm.linearMode: true, (on desktop) like this:
Code:
isc.DynamicForm.create({ ID:"editForm", autoDraw:false, dataSource:"supplyItem", linearMode:true, linearNumCols:4, titleOrientation:"left", useAllDataSourceFields:true, fields:[ {name:"SKU"}, {name:"description", rowSpan:3}, {name:"category", editorType:"PickTreeItem", dataSource:"supplyCategory", emptyMenuMessage:"No Sub Categories", canSelectParentItems:true}, {name:"unitCost", editorType:"SpinnerItem", step:0.01}, {name:"inStock"}, {name:"nextShipment", useTextField:true, wrapTitle: false} ], autoFocus:false });
is it a bug?
Also, I've tried different values for linearNumCols, but I don't see a difference, is it a bug or am I missing something?
Then I've got a a little suggestion for the sample: if you add to the DynamicForm
Code:
linearOnMobile:true,
Comment