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

Listbox can't scroll on tablet device if listitem has context or listen to onDoubleClick event

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Normal Normal
    • 7.0.1
    • 7.0.0
    • Components
    • Security Level: Jimmy

      Reproducible sample:

      <zk>
      	<zscript><![CDATA[
      		List list = new ArrayList();
      		for (int i = 0; i < 100; i++) {
      			list.add("Item " + i);
      		}
      		ListModelList lml = new ListModelList(list);
      	]]></zscript>
      	<listbox model="${lml}" height="200px">
      		<listhead>
      			<listheader label="From" hflex="min"/>
      		</listhead>
      		<template name="model" var="each">
      			<listitem label="${each}" context="popup" />
      		</template>
      	</listbox>
      	<popup id="popup">Context</popup>
      </zk>
      

            noahhuang noahhuang
            vincentjian vincentjian
            Votes:
            1 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: