Announcement

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

    Tahoe skin: filterRow for Date ListGridFields has a chevron under the calendar icon

    Hi Isomorphic,

    please see this sample (SNAPSHOT_v11.1d_2016-03-15). If you inspect and remove the calendar icon (the img-tag) in the "nationhood" column in the lower ListGrid with Chromium F12 tools, you will notice that there is a chevron below the icon.
    This is not bad in this skin, but makes skinning the item with a transparent icon (which makes sense depending on the icon and the background) impossible.
    Could you remove the chevron in date items?

    Thank you & Best regards
    Blama

    #2
    Hi Isomorphic,

    this change in load_skin.js seems to solve it:
    Code:
            if (isc.MiniDateRangeItem) {
                if (isc.minimalistTextControlAppearance) {
                    isc.MiniDateRangeItem.addProperties({
                        height:22,
                        textBoxStyle:"textItemLite", // Changed
                        controlStyle:null // Changed
                    });
                }
                
            }
    I don't know if the "null" there is correct, though.

    Best regards
    Blama

    Comment


      #3
      We've made a change to address this in builds dated March 19 and later.

      Comment


        #4
        Hi Isomorphic,

        this is fixed for me.

        Thanks
        Blama

        Comment

        Working...
        X