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:
(I've just added showHover to the first field)
You may see that in the hover there are the icons only:
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')"} ] });
You may see that in the hover there are the icons only:
Comment