Uploaded image for project: 'ZK'
  1. ZK
  2. ZK-5173

Client side memory leak for Grid and Listbox

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: Normal Normal
    • None
    • 9.6.0
    • Components
    • None
    • Chrome

      Zk9.6

      Steps to Reproduce

      • Open any page with Grid or Listbox
      • Perform an action that will detach the Grid or Listbox
      • Capture a memory snapshot using Chrome Developer tool

      Current Result

      • Detached Dom Nodes reference by Grid/Listbox's eheadrows or efootrows instance variable.

      Expected Result

      • No Detached Dom Nodes reference by Grid/Listbox

      Debug Information

       

      Workaround

      zk.override(zul.mesh.MeshWidget.prototype, "clearCache", function()

      {      this.$clearCache();      if (this.eheadrows) this.eheadrows = null;      if (this.efootrows) this.efootrows = null; }

      );

       

            Unassigned Unassigned
            hengsin hengsin
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: