Bugfix: Work item 17186 - setSelectedCellByColumnAndRow is not working
git-svn-id: https://phpexcel.svn.codeplex.com/svn/trunk@86732 2327b42d-5241-43d6-9e2a-de5ac946f064
This commit is contained in:
parent
4e6807578e
commit
3543ea45ef
|
@ -271,15 +271,17 @@ class PHPExcel_Writer_Excel2007_Worksheet extends PHPExcel_Writer_Excel2007_Writ
|
||||||
}
|
}
|
||||||
|
|
||||||
// Selection
|
// Selection
|
||||||
if ($pane != '') {
|
// if ($pane != '') {
|
||||||
// Only need to write selection element if we have a split pane
|
// Only need to write selection element if we have a split pane
|
||||||
// We cheat a little by over-riding the active cell selection, setting it to the split cell
|
// We cheat a little by over-riding the active cell selection, setting it to the split cell
|
||||||
$objWriter->startElement('selection');
|
$objWriter->startElement('selection');
|
||||||
$objWriter->writeAttribute('pane', $pane);
|
if ($pane != '') {
|
||||||
|
$objWriter->writeAttribute('pane', $pane);
|
||||||
|
}
|
||||||
$objWriter->writeAttribute('activeCell', $activeCell);
|
$objWriter->writeAttribute('activeCell', $activeCell);
|
||||||
$objWriter->writeAttribute('sqref', $activeCell);
|
$objWriter->writeAttribute('sqref', $activeCell);
|
||||||
$objWriter->endElement();
|
$objWriter->endElement();
|
||||||
}
|
// }
|
||||||
|
|
||||||
$objWriter->endElement();
|
$objWriter->endElement();
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
**************************************************************************************
|
**************************************************************************************
|
||||||
* PHPExcel
|
* PHPExcel
|
||||||
*
|
*
|
||||||
* Copyright (c) 2006 - 2011 PHPExcel
|
* Copyright (c) 2006 - 2012 PHPExcel
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
@ -17,16 +17,33 @@
|
||||||
* License along with this library; if not, write to the Free Software
|
* License along with this library; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*
|
*
|
||||||
* @copyright Copyright (c) 2006 - 2011 PHPExcel (http://www.codeplex.com/PHPExcel)
|
* @copyright Copyright (c) 2006 - 2012 PHPExcel (http://www.codeplex.com/PHPExcel)
|
||||||
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
||||||
* @version ##VERSION##, ##DATE##
|
* @version ##VERSION##, ##DATE##
|
||||||
**************************************************************************************
|
**************************************************************************************
|
||||||
|
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
BREAKING CHANGE! In previous versions of PHPExcel up to and including 1.7.7,
|
||||||
|
the 3rd-party tcPDF library was bundled with PHPExcel for rendering PDF files
|
||||||
|
through the PDF Writer.
|
||||||
|
|
||||||
|
From PHPExcel 1.7.8 onwards, this will no longer be the case. The PDF Writer is
|
||||||
|
being rewritten to allow a choice of 3rd party PDF libraries (tcPDF, mPDF, and
|
||||||
|
domPDF initially), none of which will be bundled with PHPExcel, but which can
|
||||||
|
be downloaded seperately from the appropriate sites. Selection of the library to
|
||||||
|
be used, and the directory path to that library will be defined through PHPExcel
|
||||||
|
configuration settings, allowing more flexibility.
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
Fixed in SVN:
|
Fixed in SVN:
|
||||||
- Feature: (MBaker) Options for cell caching using Igbinary and SQLite/SQlite3.
|
- Feature: (MBaker) Options for cell caching using Igbinary and SQLite/SQlite3.
|
||||||
- Feature: (MBaker) Additional row iterator options: allow a start row to be defined in the constructor; seek(), and prev() methods added.
|
- Feature: (MBaker) Additional row iterator options: allow a start row to be defined in the constructor; seek(), and prev() methods added.
|
||||||
- Feature: (Progi1984) Work item 9759 - Implement document properties in Excel5 writer
|
- Feature: (Progi1984) Work item 9759 - Implement document properties in Excel5 writer
|
||||||
|
- Feature: (MBaker) Initial definition of chart objects.
|
||||||
|
Reading Chart definitions through the Excel2007 Reader
|
||||||
|
Facility to render charts to images using the 3rd-party jpgraph library
|
||||||
- General: (MBaker) Fix to build to ensure that Examples are included with the documentation
|
- General: (MBaker) Fix to build to ensure that Examples are included with the documentation
|
||||||
- General: (MBaker) Reduce cell caching overhead using dirty flag to ensure that cells are only rewritten to the cache if they have actually been changed
|
- General: (MBaker) Reduce cell caching overhead using dirty flag to ensure that cells are only rewritten to the cache if they have actually been changed
|
||||||
- General: (MBaker) Improved memory usage in CSV Writer
|
- General: (MBaker) Improved memory usage in CSV Writer
|
||||||
|
@ -56,6 +73,7 @@ Fixed in SVN:
|
||||||
- Bugfix: (MBaker) Work item 17262 - Named Range definition in .xls when sheet reeference is quote wrapped
|
- Bugfix: (MBaker) Work item 17262 - Named Range definition in .xls when sheet reeference is quote wrapped
|
||||||
- Bugfix: (MBaker) Work item 17403 - duplicateStyle() method doesn't duplicate conditional formats
|
- Bugfix: (MBaker) Work item 17403 - duplicateStyle() method doesn't duplicate conditional formats
|
||||||
Added an equivalent duplicateConditionalStyle() method for duplicating conditional styles
|
Added an equivalent duplicateConditionalStyle() method for duplicating conditional styles
|
||||||
|
- Bugfix: (MBaker) Work item 17186 - setSelectedCellByColumnAndRow is not working
|
||||||
- General: (MBaker) Work item 15405 - Two easy to fix Issues concerning PHPExcel_Token_Stack (l10n/UC)
|
- General: (MBaker) Work item 15405 - Two easy to fix Issues concerning PHPExcel_Token_Stack (l10n/UC)
|
||||||
- General: (MBaker) Work item 15461 - Locale file paths not fit for windows
|
- General: (MBaker) Work item 15461 - Locale file paths not fit for windows
|
||||||
- General: (MBaker) Work item 16643 - Add file directory as a cache option for cache_to_discISAM
|
- General: (MBaker) Work item 16643 - Add file directory as a cache option for cache_to_discISAM
|
||||||
|
|
Loading…
Reference in New Issue