You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/05/15 23:24:44 UTC

svn commit: r538324 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIData.java

Author: bommel
Date: Tue May 15 14:24:43 2007
New Revision: 538324

URL: http://svn.apache.org/viewvc?view=rev&rev=538324
Log:
(TOBAGO-399) ColumnSelector / SheetState with null-outcome

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIData.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIData.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIData.java?view=diff&rev=538324&r1=538323&r2=538324
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIData.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/UIData.java Tue May 15 14:24:43 2007
@@ -490,6 +490,7 @@
       state.setSelectedRows((List<Integer>) attributes.get(ATTR_SELECTED_LIST_STRING));
       state.setColumnWidths((String) attributes.get(ATTR_WIDTH_LIST_STRING));
       state.setScrollPosition((Integer[]) attributes.get(ATTR_SCROLL_POSITION));
+      attributes.remove(ATTR_SELECTED_LIST_STRING);
       attributes.remove(ATTR_SCROLL_POSITION);
     }
   }