Details
-
Bug
-
Status: closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
All
Description
String content_<%=cid%> = row_<%= cid %>.getCell(i)==null?null:row_<%= cid %>.getCell(i).getRawValue();
When we init the dynamic object, we call a wrong method.
It should be:
String content_<%=cid%> = row_<%= cid %>.getCell(i)==null?null:row_<%= cid %>.getCell(i).toString();