Commit 0790596e authored by Dietmar Maurer's avatar Dietmar Maurer

use getTotalCount instead of getCount

To prevent heigth change on filtering.
parent 1f325061
......@@ -8,7 +8,7 @@ Ext.define('PVE.form.ComboGrid', {
computeHeight: function() {
var me = this;
var lh = PVE.Utils.gridLineHeigh();
var count = me.store.getCount();
var count = me.store.getTotalCount();
return (count > 10) ? 10*lh : 26+count*lh;
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment