Don't know if this is the right place to post the bug:
In the following code snippet, we need to check this._list for null before calling the size() method on it.
DwtListView.prototype.size =
function() {
return this._list.size();
}
![]()
Don't know if this is the right place to post the bug:
In the following code snippet, we need to check this._list for null before calling the size() method on it.
DwtListView.prototype.size =
function() {
return this._list.size();
}
![]()
Fixed. This will be in the next release.
Code:DwtListView.prototype.size = function() { if(this._list) { return this._list.size(); } else { return 0; } }
There are currently 1 users browsing this thread. (0 members and 1 guests)