Announcement

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

    TreeGrid: showHover for first column show icon only in hover

    SmartClient Version: v12.1p_2020-09-26/AllModules Development Only (built 2020-09-26)
    and
    SmartClient Version: SNAPSHOT_v13.0d_2020-09-23/AllModules Development Only (built 2020-09-23)
    Chrome on OSX

    Hello, please modify the #treesMultipleColumns sample like this:

    Code:
    isc.TreeGrid.create({
        ID: "employeeTree",
        width: 500,
        height: 400,
        dataSource: "employees",
        autoFetchData: true,
        nodeIcon:"icons/16/person.png",
        folderIcon:"icons/16/person.png",
        showOpenIcons:false,
        showDropIcons:false,
        closedIconSuffix:"",
        showSelectedIcons:true,
        fields: [
            {name: "Name", showHover:true},
            {name: "Job"},
            {name: "Salary", formatCellValue: "isc.NumberUtil.format(value, '\u00A4,0.00')"}
        ]
    });
    (I've just added showHover to the first field)

    You may see that in the hover there are the icons only:

    Click image for larger version  Name:	2020-09-28 10.04.11.jpg Views:	0 Size:	17.6 KB ID:	263692
    Last edited by claudiobosticco; 28 Sep 2020, 00:32.

    #2
    This one's been fixed for builds dated October 1 and later - you'll just see the nodeIcon and title-HTML in the hover, not the indent or opener icon

    Comment


      #3
      Sorry, I didn't check before, but thanks, I see it's fixed in the latest build.

      Comment

      Working...
      X