Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    13.1d SelectItem right-width issue

    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:
    • ButtonItem too wide
    • SelectItem too wide
    Without linearMode:true:
    • Only SelectItem too wide
    Best regards
    Blama

    Click image for larger version

Name:	FormItem width.png
Views:	92
Size:	56.0 KB
ID:	268849


    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
    });

    #2
    The SelectItem issue does not happen in v12.1p_2022-10-18 or v13.0p_2022-10-18.
    The MenuItem issue is only visible in 13.0p linearMode:true.

    Comment


      #3
      Hi Isomorphic,

      this is still happening in current builds, e.g. SNAPSHOT_v13.1d_2023-01-17.

      Best regards
      Blama

      Comment

      Working...
      X