Announcement

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

    missing style selectItemLiteTextPendingErrorFocused

    Hello, I've just noticed that the selectItemLiteTextPendingErrorFocused style is missing, at least in flat skins:

    Click image for larger version

Name:	2024-08-06 17.00.12.jpg
Views:	56
Size:	7.7 KB
ID:	273191

    Code:
    isc.DynamicForm.create({
        ID:"foo",
        width: 500,
        numCols: 4,
        isGroup: true,showPending:true,
        groupTitle: "List - ComboBox",
        wrapItemTitles: false,
        fields : [{
            name: "bugStatus", title: "Bug Status",
            editorType: "ComboBoxItem",required:true,
            valueMap : {
                "new" : "New",
                "active" : "Active",
                "revisit" : "Revisit",
                "fixed" : "Fixed",
                "delivered" : "Delivered",
                "resolved" : "Resolved",
                "reopened" : "Reopened"
            }
        },{
            name: "itemName", title: "Item Name", editorType: "ComboBoxItem",
            optionDataSource: "supplyItem", pickListWidth: 250
        }]
    });
    run foo.validate() and then select an option

    #2
    We've added the missing styles, and you will see the fix in tomorrow's builds, starting August 8.

    Best Regards
    Isomorphic Software

    Comment


      #3
      SmartClient Version: SNAPSHOT_v13.1d_2024-08-10/AllModules Development Only (built 2024-08-10)

      Thanks, now I see it's there, but while testing with the test case from post #1, I noticed that also the formTitlePendingErrorFocused style is missing, and maybe that's why a little visual glitch in the form appears:

      Click image for larger version

Name:	2024-08-10 14.04.59.jpg
Views:	46
Size:	14.6 KB
ID:	273238
      when the "bug status" item is focused, the "item name" combobox overlaps the group title border.

      Comment


        #4
        This should be fixed now. Please retest with recent builds.

        Regards
        Isomorphic Software

        Comment


          #5
          SmartClient Version: SNAPSHOT_v13.1d_2024-08-19/AllModules Development Only (built 2024-08-19)

          I see it's fixed, thank you very much

          Comment

          Working...
          X