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

ZK DataBinding support client callback function after some command triggered

XMLWordPrintable

    • Icon: New Feature New Feature
    • Resolution: Done
    • Icon: Normal Normal
    • 8.0.0
    • None
    • Databind 2
    • None

      For example,

      <zk>
      Please click the "Click" button, you should see "clicked !!" in the textarea
      	<div viewModel="@id('vm') @init('org.zkoss.zktest.test2.F80_ZK_2614_VM')">
      		<button label="Click" onClick="@command('clickable')"/>
      	</div>
      	<script>
      	zk.afterMount(function () {
      		var binder = zk.Widget.$(jq("@button")).$binder();
      		binder.after('clickable', function () {
      			zk.log('clicked !!');
      		});
      	});
      	</script>
      </zk>
      

            jumperchen jumperchen
            jumperchen jumperchen
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: