-
2 Aug 2012 12:50 PM #1
Sencha Ext GWT grid columns not aligned with grid header
Sencha Ext GWT grid columns not aligned with grid header
Can Sencha please release the fix for:
http://goo.gl/lE70qhttp://code.google.com/p/chromium/is...tail?id=120865
I understand that this is fixed for paying customers in 2.2.6, and that the rest of us have to wait until v2.3.0 is released.
This bug makes our application (Gradebook2 Sakai Foundation) almost unusable.
Any help is greatly appreciated.
Best,
-- Thomas Amsler
UC Davis
-
2 Aug 2012 12:55 PM #2
Our application specific JIRA where we track this is:
https://jira.sakaiproject.org/browse/GRBK-1314
-
10 Apr 2013 11:03 PM #3
I'm using gxt 2.2.5 and there is a solution:
Note:Code:@media screen and (-webkit-min-device-pixel-ratio:0) { .x-grid3-row td.x-grid3-cell { box-sizing: border-box; } }
If your CSS has something like:
remote it.Code:* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
-
17 Apr 2013 12:55 AM #4
Hi skyrosbit,
I tried with your solution, and added
in my css file (Not gxt-all.css)Code:@media screen and (-webkit-min-device-pixel-ratio:0) { .x-grid3-row td.x-grid3-cell { box-sizing: border-box; } }
However, I got an warning message
: encountered "and". Was expecting one of: "{" ","
Do I make any mistake?
-
17 Apr 2013 1:20 AM #5
Sorry,
after google, I added the code in my jsp file, between <style></style>
but still not work...
-
17 Apr 2013 4:44 AM #6
I have similar situation ....
I have similar situation ....
To find the solutions I have created a separate Web application with the Grid component, in which I managed to fix the bug.
But when I moved the СSS-trick to a real project, cleared all cache, it still did not work.
But I found that the problem was in unneccessary *.layout() method call for a container (not grid, but the parent container). So I removed this call and it works now.
...
-
17 Apr 2013 5:20 PM #7
Hi Skyrosbit,
Thank you for your feedback, I do find I call layout function in grid's parent panel,
but it still works abnormal after I removed it.
I will keep try on this way, and update if I find the reason.
Thank you again~
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote