http://www.sencha.com/forum/showthread.php?299238-Extjs-5.1.0-How-to-use-Grid-in-Combo-instead-of-Boundlist&p=1094539#post1094539
Type: Posts; User: ypandey
http://www.sencha.com/forum/showthread.php?299238-Extjs-5.1.0-How-to-use-Grid-in-Combo-instead-of-Boundlist&p=1094539#post1094539
Hi,
Try using this fiddle
https://fiddle.sencha.com/#fiddle/kil
The problem was, grid does not have "selectionModel" as config, and every method in combo is expecting that picker will use...
Hi Uday,
There has been some changes in ExtJS 5 class system which requires to use getters and setters while defining the class. Try making that change and report if you still face some issue.
...
@Footeuz
My bad! :D I missed filename parameter. If you find some other issues, Pls remember to report here.:) I have updated the fiddle. (https://fiddle.sencha.com/#fiddle/ikd). Still need to...
Hi Soringpenguin,
https://fiddle.sencha.com/#fiddle/ikd
I have done minimum changes to make it work on 5.0.1, I have not tested on various scenarios. So feel free to fork the fiddle and notify...
Hi,
I am facing same issue in my code. I just tried the fiddle with 5.0.7 and it works fine. But again in 5.1.1 the expand/collapse does not work. None of the workarounds solved the issue....
Hi Gary,
Thanks for the detailed explanation. :)
But shouldn't filterfeature work normally when store is loaded using loadRawData? :-/
Regards
Yogesh
Ext.application({
name: 'Fiddle',
launch: function() {
var win = Ext.create('Ext.window.Window', {
title: 'CheckboxGroup Bug',
layout: 'fit',
...
Hi,
As you can verify on this fiddle, list menu filtering on "Name" column is not working.
b18
Cause:
loadRawData is not firing "load" event. But according to ExtJS docs, it should fire load...
Hi Gary,
As this issue has been fixed in 4.2.3, You can close this bug and if possible please provide some workaround/override for this? :D
Thanks
Yogesh
Regards
Yogesh
Hi Gary,
Forgot to add the fiddle link
alh
If there was no bug, I understand the difficulty to provide the workaround.
Thanks :)
Yogesh
Tested on 4.2.2
On bulk remove of around or more than (400-500) records on buffered grid, gives following error.
SCRIPT5007: Unable to get property 'className' of undefined or null reference...
alc
For ExtJS 4.2.2 - persistence of grouping on columns works.
For ExtJS 5.0.1 - grouping itself is not working.
For ExtJS 4.2.3 & 4.2.x & 5.0.x night builds - grouping persistence doesn't...
Hi Richardmansfield,
I made couple of small changes and same fiddle works for Ext JS 5.x
removed addEvents in ExporterButton class, as it has been deprecated
used Ext.Util.Format.usMoney...
Tested on Ext JS 4.2.1 , 4.2.2
a7i
Steps:
1. Summary for class:1 group won't come &
2. On editing any student record of the group, It will throw an error and you won't be able to edit...
Try Issue #2 on windows and chrome browser.
:(
@Gary: I used4.2 (1st August 2014) build & chrome browser
Try placing "Name" column between "Time" & "By" columns
Sure steffenk, We won't mind that! Is there any easy way to do so? :)
Test in Ext JS 4.2.1 & 4.2.2 (Nightly Build)
8ft
Issue #1: (only in 4.2.1)
Steps:
In the given fiddle try moving "Editable Here" column outside grouped column.
"Ownership and Visibility"...
Found this workaround because It starts working fine if column(s) is/are moved. ;)
// Menu changes when columns are moved. It will be recreated.
grid.headerCt.purgeCache();
Fiddle:...
Hi,
Description: Column Menu doesn't open for stateful grid having filter & grouping feature.
For Ext JS 4.2.2
We are using stateful grid having filter feature and grouping feature.
But...
Interesting... It looks like 1-1 association works in both direction? 8-|
Either you can provide reference of Child model in Parent model fields OR
you provide reference of Parent model in Child...
@Gary :)
Note: If fiddle not working, please change the sequence of files in the following order.
FileSaver.js
Formatter.js
csvFormatter/*.js
excelFormatter/*.js
Exporter.js
...
Thanks Kechroo :)
based on your fix, onKeyEnd issue can also be fixed.
Calculating totalCount based on buffered grid check.
totalCount = store.buffered ? store.getTotalCount() :...