Status/Resolution/Reason: Closed/Withdrawn/DesignLimitation
Reporter/Name(from Bugbase): Aaron Neff / Aaron Neff (Aaron Neff)
Created: 09/29/2015
Components: Document Management, Office Integration
Versions: 11.0
Failure Type:
Found In Build/Fixed In Build: CF11_Final /
Priority/Frequency: Normal / Some users will encounter
Locale/System: English / Win XP All
Vote Count: 1
spreadsheetSetCellValue() adds necessary columns (good) but does not add necessary rows (bad).
Steps to reproduce:
1) Run this:
<cfscript>
mySpreadsheet = spreadsheetNew("mySheet", false);
spreadsheetSetCellValue(mySpreadsheet, "row 3 column 6", 3, 6);
spreadsheetWrite(mySpreadsheet, expandPath("./myspreadsheet.xls"), "", true);
cfspreadsheet(action="read", src=expandPath("./myspreadsheet.xls"), query="q");
writeOutput('Rows: ' & q.RecordCount & ' Columns: ' & listLen(q.ColumnList));
cfspreadsheet(action="read", src=expandPath("./myspreadsheet.xls"), query="q");
writeDump(var=q, format="text");
</cfscript>
Actual result:
- displays "Rows: 1 Columns: 6"
- dump shows "row 3 column 6" was placed in row 1 column 6
Expected result:
- displays "Rows: 3 Columns: 6"
- dump should show "row 3 column 6" placed in row 3 column 6
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 4066259
External Customer Info:
External Company:
External Customer Name: Aaron Neff
External Customer Email:
External Test Config: Verified in CF11 Update 5 (build 11,0,05,293506)
Attachments:
Comments: