-
27 Aug 2008 6:38 AM #261
-
27 Aug 2008 6:51 AM #262
my buffered Grid View is
aEmployeeView = new Ext.ux.grid.BufferedGridView({
nearLimit: 75,
loadMask: {
msg: "Please Wait...."
}
});
This was taken out of an example on your site prior to it going down, only thing I changed was the limit to 75PHP Architect
New Ext User.
-
27 Aug 2008 7:11 AM #263
-
28 Aug 2008 4:36 AM #264
Hi Thorsten,
Is it possible to use Row-expander to work with Livegrid? It's not working for me :-(
Thanks in anticipation,
sgoswami
-
29 Aug 2008 7:25 AM #265
Hi all,
I have released 0.2rc1 of Ext.ux.Livegrid today. Most notable improvement is a change in the way the view component calculates the number of displayable rows: The last row is not removed anymore if it does not fit into the viewport, but clipped: The complete viewport can now be used by grid rows.
This feature seemed very important to me, so I made a point release instead a maintenance release out of it.
Support for Ext 2.2 is now postponed for release 0.3.
Changelog as usual available on the first page!

Last edited by ThorstenSuckow; 29 Aug 2008 at 8:03 AM. Reason: typo!
-
29 Aug 2008 12:34 PM #266
0.2rc2 available
-
29 Aug 2008 4:02 PM #267
loadMask while sorting
loadMask while sorting
I find it useful to show the loadMask while sorting. I accomplish this by adding the following to BufferedGridView. Thought I'd share ... maybe there is a better way.
Code:onHeaderClick : function(g, index){ if(this.headersDisabled || !this.cm.isSortable(index)){ return; } this.showLoadMask(true); // <-- added line to original implementation g.stopEditing(true); g.store.sort(this.cm.getDataIndex(index)); }
-
29 Aug 2008 4:06 PM #268
-
29 Aug 2008 4:47 PM #269
I'm working hard on getting 0.2 out so I can create the 0.3 branch for Ext 2.2 compatibility... anyway, new bugs found, new bugs fixed. 0.2rc3 is available for rurther testing!
Ext.ux.Livegrid now works with Safari 3.1 on windows!
-
29 Aug 2008 5:00 PM #270




Reply With Quote