Uploaded image for project: 'Tapestry'
  1. Tapestry
  2. TAPESTRY-1309

clearValidationDecorations in validation.js has huge performance issues with many form elements

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • 4.1.2
    • 4.1.2
    • JavaScript
    • None
    • Win IE6, IE7, FF1.5(mac os x) and Safari(mac os x)

    Description

      In validation.js this method causes performances issues in IE6, IE7, FF1.5(mac) and Safari if you have around 4000 or more checkboxes within the form (in the case of adding and removing category tree nodes). This was not an issue with Tapestry 4.0.2.

      /**

      • Clears out previous css classes set on fields
      • in error.
        */
        clearValidationDecorations:function(form, props){
        for (var i=0; i< form.elements.length; i++) {
        if (dj_undef("type", form.elements[i]) || typeof form.elements[i].type == "undefined"
        form.elements[i].type == "submit"
        form.elements[i].type == "hidden") { continue; }

      dojo.html.removeClass(form.elements[i], this.missingClass);
      dojo.html.removeClass(form.elements[i], this.invalidClass);
      }
      },

      The performance issues that we found:
      IE6/7 - browser locks up with hour glass for close to 3 minutes before it hits the listener method
      Safari - browser locks up and eventually quits
      FF (mac) - long running script processing prompt that asks to continue or stop script

      When we commented this method out the performance issues went away. We also tried adding || form.elements[i].type == "checkbox" to the continue statement which worked but was still slower than usability testing allows.

      Attachments

        Activity

          People

            jkuhnert Jesse Kuhnert
            avo Anna Vo
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: