Navigation Menu

Skip to content

Commit

Permalink
- Summary:Fix bugIt will pop up error when drag the attribute column to
Browse files Browse the repository at this point in the history
the auto summarize on table.



- Bugzilla Bug (s) Resolved:



- Description: 



- Tests Description : 

Manual test
  • Loading branch information
dgao committed Nov 25, 2013
1 parent ea30fc4 commit bf6e07c
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -823,7 +823,8 @@ else if ( DesignChoiceConstants.ANALYSIS_TYPE_ATTRIBUTE.equals( UIUtil.getColumn
for ( Object o : slotHandle.getContents( ) )
{
GroupHandle group = (GroupHandle) o;
if ( group.getName( ).equals( str ) )
//if ( group.getName( ).equals( str ) )
if ( group.getName( ).equals( temp.getColumnName() ) || group.getName( ).equals( temp.getAlias()))
hasGroup = true;
}
if ( !hasGroup )
Expand Down

0 comments on commit bf6e07c

Please sign in to comment.