[FIX] Dataset's index default value should be null

bzr revid: fme@openerp.com-20110623155218-205t5nb0etjdgfc4
This commit is contained in:
Fabien Meghazi 2011-06-23 17:52:18 +02:00
parent 93e3a1f366
commit b91fca6709
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ openerp.base.DataSet = openerp.base.Controller.extend( /** @lends openerp.base.
this._super(session);
this.model = model;
this.context = context || {};
this.index = 0;
this.index = null;
this.count = 0;
},
start: function() {