-
22 Feb 2011 3:04 AM #791
Hi MindPatterns,
I've got some troubles with the last version of Livegrid (0.5) and dragondrop in Extjs 3.3.1.
Error:
this.view.mainBody is undefined
Could you help me please to fix the problem ? Seems that the function renderUI fails with last extjs version.Code:+ GridDragZone(grid=Object { initialConfig={...}, title="Devices", more...}, config=Object { ddGroup="devicesBasket"})all-de...1155496 (ligne 48828)grid = Object { initialConfig={...}, title="Devices", more...} config = Object { ddGroup="devicesBasket"} + DragZone(grid=Object { initialConfig={...}, title="Devices", more...}, config=Object { ddGroup="devicesBasket"})grid.l...8372267 (ligne 3678)grid = Object { initialConfig={...}, title="Devices", more...} config = Object { ddGroup="devicesBasket"} + renderUI()grid.l...8372267 (ligne 462) + render()
Thanks,
-
28 Feb 2011 9:47 AM #792
Bug in CheckboxSelectionModel with Ext 3.3.1
Bug in CheckboxSelectionModel with Ext 3.3.1
In the CheckboxSelectionModel the version for LiveGrid 3.3 RC1 doesn't work. The model won't allow multiple checkboxes to be checked without holding down the Ctrl Key.
What I found was that the event handling was changed drastically from ExtJS 3.1 to ExtJS 3.3. The Ext.ux.grid.livegrid.CheckboxSelectionModel doesn't follow how the ExtJS 3.3 Ext.grid.CheckboxSelectionModel is implemented.
BTW, we have purchased a license for your extension and we love it! It would be a big plus if I could get this feature to work.
-
2 Mar 2011 3:08 PM #793
LiveGrid has no features list
LiveGrid has no features list
LiveGrid has no features list.
Anyone know what work and doesn't compared to the official Ext JS Grid?
Hopefully, Ext JS 4 will be so faster that we will be able to write enterprise application without hacking our application with LiveGrid experiment.
-
2 Mar 2011 9:07 PM #794
I was boggled by the same bug, I managed to do the following
AfterRenderUI was usually named as something that would fix for issues surrounding render
So I removed the initialization of the livegrid Dragzone from RenderUI to AfterRenderUI (note that it uses some local variables also, please copy those necessary)
This fixed my issues,
All the best
Mohan B
-
23 Mar 2011 5:26 PM #795
Rowselect Event doesn't fire. Are there somebody meet the same problem?!
Rowselect Event doesn't fire. Are there somebody meet the same problem?!
I have a Livegrid CheckboxSelectionModel and there's a Listeners in this CheckboxSelectionModel
to handle rowselect event.
But somehow, this event doesn't be fired after any row that have been selected.
Code:this.SelectModel = new Ext.ux.grid.livegrid.CheckboxSelectionModel({ checkOnly: false, listeners : { scope : this, rowselect : function(sm, rowIndex, record) { alert('rowselect'); }, selectionchange : function(sm, rowIndex, record) { alert('selectionchange'); } } });
-
25 Jun 2011 9:57 AM #796
Here's some quick code that will do the following:
- select/deselect a row when clicking on it
- keep the previous rows selected
Add a listener to the live grid:
Go inside the livegrid code and modify the selectRow function (line 2386 in livegrid-all-debug.js) and add keepExisting = true; as the first line of code.PHP Code:rowmousedown : function(grid, rowIndex, e){
var sm = grid.getSelectionModel();
if(sm.isSelected(rowIndex)){
sm.deselectRow(rowIndex, false);
return false;
}
}
-
9 Aug 2011 11:32 PM #797
checkOnly for CheckboxBoxSelectionModel
checkOnly for CheckboxBoxSelectionModel
setting checkOnly for CheckboxBoxSelectionModel does not work, so it's unable to set checking only by clicking on checkbox column. Looking to sources it appears that 'checkOnly' option is not handled anyhow. I suppose the behaviour should be copied from standard Ext.grid.CheckboxSelectionModel:
Code:constructor : function(){ Ext.grid.CheckboxSelectionModel.superclass.constructor.apply(this, arguments); if(this.checkOnly){ this.handleMouseDown = Ext.emptyFn; } },
-
11 Aug 2011 11:07 PM #798
Problems with using CheckboxSelectionModel with Ext.ux.grid.ColumnHeaderGroup
Problems with using CheckboxSelectionModel with Ext.ux.grid.ColumnHeaderGroup
When livegrid's CheckboxSelectionModel is added to the grid with headers grouped by Ext's standard plugin Ext.ux.grid.ColumnHeaderGroup, the following problem appears (see the attached image):
1) The second nothing-doing checkbox appears in the top row of the column header (the row which contains column group headers).
2) Clicking "check all" checkbox checks only loaded part of rows (f.e. 200 rows). When scrolling from this part of rows, other rows remain unchecked while header checkbox is indicated as checked. If "check all" is checked on other part of rows, the previously checked rows uncheck.
In grids with no ColumnHeaderGroup, behaviour is correct.
Notice I'm using ext 3.2, so rowspanned column headers are not possible.
-
25 Sep 2011 1:19 PM #799
This download link "http://www.ext-livegrid.com/download/" is broken
This download link "http://www.ext-livegrid.com/download/" is broken
This download link "http://www.ext-livegrid.com/download/" is broken. Where can I download the latest version? Does anyone have the rowSelectionModel working with Ext 3.4.0?
-
30 Jan 2012 12:42 AM #800
How to select a cell
How to select a cell
Hello,
The livegrid does not allow to select a specific cell. Each time the user select a cell, the entire row is selected.
Is it possible to select a cell with the mouse, then, navigate with the cursor arrow?
Thanks for your help.


Reply With Quote
