Uploaded image for project: 'Keikai'
  1. Keikai
  2. KEIKAI-686

setSheetMaxVisibleRows() and setSheetMaxVisibleColumns() change Spreadsheet maxVisibleRows and maxVisibleColumns

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Won't Fix
    • Icon: Major Major
    • 6.0.0
    • 5.12.2
    • None
    • Security Level: Jimmy

      Steps to Reproduce

      <zk>
          <button label="set visible row" onClick="setMaxVisibleRows()"/>
          <spreadsheet id="ss" maxVisibleRows="200" maxVisibleColumns="40" height="80%"
          src="/WEB-INF/books/blank2.xlsx" showSheetbar="true"/>
          <zscript><![CDATA[
          public void setMaxVisibleRows(){
              ss.setSheetMaxVisibleRows(ss.getSelectedSSheet(), 250);
          }
          ]]></zscript>
      </zk>
      

      1. click the button
      2. check 2 sheet's max visible row

      Current Result

      both sheets' max visible rows are changed

      Expected Result

      nothing changed

      Debug Information

      • the method should only change a sheet's setting instead of the component's properties. Spreadsheet might render rows on each setting but app devs don't expect this method to change the component's max visible row. If they want to change, they should call Spreadsheet.setMaxVisibleRows()
      • These 2 methods accept SSheet instead of Sheet which are different from most other public methods. I suppose SSheet is an internal object and should not appear on a Spreadsheet's public method signature

            DevChu DevChu
            hawk hawk
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: