Hi Isomorphic,
this is a new, but continued thread as requested here.
Using SNAPSHOT_v13.1d_2022-10-16 here with this sample code, you can see that the SelectItem and ButtonItem width do not match the width of the other items.
With linearMode:true:
Blama

this is a new, but continued thread as requested here.
Using SNAPSHOT_v13.1d_2022-10-16 here with this sample code, you can see that the SelectItem and ButtonItem width do not match the width of the other items.
With linearMode:true:
- ButtonItem too wide
- SelectItem too wide
- Only SelectItem too wide
Blama
Code:
isc.DynamicForm.create({
ID:"editForm",
autoDraw:true,
dataSource:"supplyItem",
linearMode:true, // Switch this
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
});
Comment