Uploaded image for project: 'ZK'
  1. ZK
  2. ZK-4206

Can't use smooth frozen and non-nativebar together

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: Normal Normal
    • None
    • 8.5.0
    • Components

      Steps to Reproduce

      Scroll to right

      <zk>
      	<grid width="800px">
      		<custom-attributes org.zkoss.zul.nativebar="false"/>
      		<custom-attributes org.zkoss.zul.frozen.smooth="true"/>
      		<frozen columns="1"/>
      		<columns>
      			<column label="Frozen column" width="200px"/>
      			<forEach begin="1" end="20" var="i">
      				<column width="100px" label="Column-${i}"/>
      			</forEach>
      		</columns>
      		<rows>
      			<row>
      				<cell>
      					<label value="Frozen cell"/>
      				</cell>
      				<forEach begin="1" end="20" var="i">
      					<cell>
      						<label value="Cell-${i}"/>
      					</cell>
      				</forEach>
      			</row>
      		</rows>
      	</grid>
      </zk>
      

      Current Result

      Head and body not scrolled, open console to see js error

      Expected Result

      Head and body should scroll to right without any error

            DevChu DevChu
            CharlesQiu CharlesQiu
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: