Version smartclient: v13.0p_2022-09-21
Browser: chrom and firefox latest version
OS:windows
Bug: when the property showConnectors = true for a TreeGrid is set and on of the fields has set frozen : true
the treeGrid shows an offset/misalignment in the highlighted / selected row
demo url: SmartClient™ v13.0p_2022-09-21 Showcase
demo code: see below.
Browser: chrom and firefox latest version
OS:windows
Bug: when the property showConnectors = true for a TreeGrid is set and on of the fields has set frozen : true
the treeGrid shows an offset/misalignment in the highlighted / selected row
demo url: SmartClient™ v13.0p_2022-09-21 Showcase
demo code: see below.
Code:
isc.TreeGrid.create({
ID: "employeeTree",
width: 500,
height: 400,
dataSource: "employees",
autoFetchData: true,
allowAdvancedCriteria:false,
showConnectors: true,
canEdit:false,
fields: [
{name: "Name"},
{name: "Job", frozen: true},
{name: "Salary" }
]
});
Comment