You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by bu...@apache.org on 2013/08/01 12:29:28 UTC

[Bug 55339] New: setRowGroupCollapsed not implemented

https://issues.apache.org/bugzilla/show_bug.cgi?id=55339

            Bug ID: 55339
           Summary: setRowGroupCollapsed not implemented
           Product: POI
           Version: unspecified
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: major
          Priority: P2
         Component: SXSSF
          Assignee: dev@poi.apache.org
          Reporter: sweeny121@gmail.com

I am using SXSSF for generating excel sheets.

The method setRowGroupCollapsed has not yet been implemented in
SXSSFSheet.class:

    public void setRowGroupCollapsed(int row, boolean collapse)
    {
        //_sh.setRowGroupCollapsed(row, collapse);
        throw new RuntimeException("Not Implemented");
    }

As a result, if I try to collapse rows, the excel sheet generated gives the
error message: "Excel found unreadable content".

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 55339] setRowGroupCollapsed not implemented

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=55339

sweeny121@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|major                       |critical

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


[Bug 55339] setRowGroupCollapsed not implemented

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=55339

--- Comment #1 from Ishmeet <sw...@gmail.com> ---
Note that the method implementation is fine in version 3.8-beta5
(http://grepcode.com/file/repo1.maven.org/maven2/org.apache.poi/poi-ooxml/3.8-beta5/org/apache/poi/xssf/streaming/SXSSFSheet.java#SXSSFSheet):

 public void setRowGroupCollapsed(int row, boolean collapse)
   {
       _sh.setRowGroupCollapsed(row, collapse);
   }

But for some reason, this was commented out in version 3.8:

public void setRowGroupCollapsed(int row, boolean collapse)
{
//_sh.setRowGroupCollapsed(row, collapse);
throw new RuntimeException("Not Implemented");
}

Here is the commit message:
http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/streaming/SXSSFSheet.java?view=diff&r1=1295057&r2=1295058&pathrev=1295058

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org