Revision history [back]

click to hide/show revision 1
initial version

answered 2010-02-10 18:49:22 +0800

henrichen gravatar image henrichen

ZK Team

This is not correct. ZK ask for jth element and you return it the whole array.

    public Object getElementAt(int j) {
        return _data;
    }

Should be

    public Object getElementAt(int j) {
        return _data[ j ];
    }
Support Options
  • Email Support
  • Training
  • Consulting
  • Outsourcing
Learn More