Announcement

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

  • Isomorphic
    replied
    A quick update - we've fixed this bug for tomorrow's builds, so you can remove the workaround with a build dated December 23 or later.

    Leave a comment:


  • Isomorphic
    replied
    Hi!
    Just a quick note to let you know we see this issue and are investigating.
    As a quick workaround you can explicitly set "enforceVClipping" to true for the grid to resolve this issue

    Regards
    Isomorphic Software

    Leave a comment:


  • vertical offset in treeGrid row when 'showConnectors = true' and one column is frozen

    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.

    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" }
        ]
    });
    Last edited by paulwilhelm; 21 Sep 2022, 06:38.
Working...
X