[CLOSED] GridView script error

  1. #1

    [CLOSED] GridView script error

    Hi.

    Ext.js GridView code has an error in the processRow function which prevent grid from rendering stripe rows in some cases:

    SVN code:

     if ((idx + 1) % 2 === 0){
          r.className += ' x-grid3-row-alt';
     }
    must be:

     if ((i + 1) % 2 === 0){
          r.className += ' x-grid3-row-alt';
     }
    Last edited by geoffrey.mcgill; Feb 22, 2011 at 4:50 AM.
  2. #2

    RE: [CLOSED] GridView script error

    Confirm, I got same error.

    Matteo
  3. #3

    RE: [CLOSED] GridView script error

    Hi,

    Fixed. Please update from SVN

Similar Threads

  1. Replies: 17
    Last Post: Oct 12, 2011, 4:54 PM
  2. Replies: 4
    Last Post: Jan 25, 2011, 10:39 AM
  3. [CLOSED] ComboBox script error:
    By rthiney in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 01, 2010, 8:17 AM
  4. Replies: 2
    Last Post: Jul 29, 2009, 1:57 PM
  5. Script Error
    By jack_jj in forum 1.x Help
    Replies: 2
    Last Post: Dec 26, 2008, 8:53 AM

Posting Permissions