-
22 Jul 2010 5:01 PM #1
[FNR] GroupSummaryView and SummaryColumnConfig alignment issue
[FNR] GroupSummaryView and SummaryColumnConfig alignment issue
Column alignment in a GroupSummaryView summary row in a doesn't work the same ways as the alignment of the non summary data.
This is visible on the LiveSummaryView demo for 2.1.1 and 2.2.0 beta and affects IE8, FF3 and Chrome.
Just make the cost estimate and rate columns small.
The normal columns truncate overflow data (when the data is wider than the column width), but the summary row does not.
This is caused by a missing style - "x-grid3-summary-table". This style is not in any included css file.
The fix is to add this class name to use the same style as x-grid3-row-table
See the attached picture from the 2.2.0 Beta demo:Code:.x-grid3 .x-grid3-row-table .x-grid3-summary-table { table-layout: fixed; }
GXT220SumColAlignIssue.jpg
-
23 Jul 2010 12:55 AM #2
Fixedin SVN as of revision 2156.
Your selector was wrong. You probably meant
Code:.x-grid3 .x-grid3-row-table, .x-grid3 .x-grid3-summary-table { table-layout: fixed; }
-
23 Jul 2010 1:26 AM #3
Yes, your right, I had an extra .x-grid3-row-table but combining both into the same rule makes more sense. Thanks.
Thank you for reporting this bug. We will make it our priority to review this report.
Similar Threads
-
[FNR] GroupSummaryView incorrectly displayed
By unknown13 in forum Ext GWT: Bugs (2.x)Replies: 1Last Post: 6 Jul 2010, 3:41 AM -
[FNR] Header group alignment ignored
By The_Jackal in forum Ext GWT: Bugs (2.x)Replies: 3Last Post: 23 Jun 2010, 3:59 PM -
[FNR] CheckBox input / boxlabel alignment incorrect
By jonjanisch in forum Ext GWT: Bugs (2.x)Replies: 1Last Post: 8 Mar 2010, 1:58 AM -
GroupSummaryView and SummaryColumnConfig
By OBELIX in forum Ext GWT: DiscussionReplies: 1Last Post: 18 Feb 2010, 8:21 AM -
AggregationRowConfig and GroupSummaryView alignment issue
By IHB1 in forum Ext GWT: DiscussionReplies: 6Last Post: 9 Jan 2010, 10:50 AM


Reply With Quote