Announcement

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

    6.1p Wrapped Titles seems to disable ShowClippedHeaderTitlesOnHover

    Hi,
    Just noticed that setting ListGrid.setWrapHeaderTitles(true) disables ShowClippedHeaderTitlesOnHover.
    It can be reproduced in showcase example http://www.smartclient.com/smartclie...itlesNewSample
    Code:
    isc.ListGrid.create({
        ID: "countryList",
        height:224, width:380, alternateRecordStyles:true,
        autoFitWidthApproach:"both",
        wrapHeaderTitles:true,
        headerHeight:40,
        canSort:false,
        headerAutoFitEvent:"doubleClick",
        leaveHeaderMenuButtonSpace:false,
        data: countryData,
        fields:[
            {name:"countryCode", title:"Flag Thumbnail", cellAlign:"center",
             type:"image", imageURLPrefix:"flags/16/", imageURLSuffix:".png"},
            {name:"countryName", title:"Country of Origin"},
            {name:"capital", title:"Capital"},
            {name:"continent", title:"Continent"}
        ]
    })
    Just shrink Capital column and move cursor over the title - no hover shown.
    Then comment out
    // wrapHeaderTitles:true
    and test it again. This time hover is shown.

    Is it intentional?
    Thanks,
    MichalG

    #2
    Hi michalg,

    it's not intentional, see here.

    Best regards
    Blama

    Comment


      #3
      Hi Michael,
      We've made a change to address this issue in the 6.1p branch.
      Please try the next nightly build dated July 20 or above

      Regards
      Isomorphic Software

      Comment


        #4
        Verified in SmartClient Version: v11.1p_2017-07-20/LGPL Development Only (built 2017-07-20).
        Thank you.
        MichalG

        Comment

        Working...
        X