Commit 3cb57b6b1ef22b46ca30288894bc0609d423981c
1 parent
3ae9910c
Exists in
master
#9813: bug sur le range de records dans es cas de pagination
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
ihm/app/controller/Steps/TransformationDefinitionStep.js
... | ... | @@ -241,7 +241,7 @@ Ext.define('treps.controller.Steps.TransformationDefinitionStep', { |
241 | 241 | 'dstframe' : dstFrame, |
242 | 242 | 'dstcenter' : dstCenter, |
243 | 243 | 'starttime' : srcStore.getAt(0).get(timeCol), |
244 | - 'stoptime' : srcStore.getAt(srcStore.totalCount-1).get(timeCol), | |
244 | + 'stoptime' : srcStore.getAt(srcStore.getCount()-1).get(timeCol), | |
245 | 245 | 'vectors' : vecDefController.getVectorsStr(), |
246 | 246 | 'timeformatid' : timeDefController.getTimeFormat(), |
247 | 247 | 'timepattern' : timeDefController.getTimePattern(), | ... | ... |