forward"
Maya001122 (talk | contribs) (Created page with '== The forward Attribute == forward="orginalEvent=targetId1/targetId2.targetEvent" forward="orginalEvent=targetId1/targetId2.targetEvent(eventData)" forward="originalEvent=${e…') |
|||
(19 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
− | + | {{ZUMLReferencePageHeader}} | |
− | |||
− | |||
− | |||
− | |||
− | + | =Syntax= | |
+ | |||
+ | forward="''orginalEvent''=''targetId1''/''targetId2''.''targetEvent''" | ||
+ | forward="''orginalEvent''=''targetId1''/''targetId2''.''targetEvent''(''eventData'')" | ||
+ | forward="''originalEvent''=${''el-target''}.''targetEvent''(${''el-eventdata''})" | ||
+ | forward="''targetEvent''" | ||
+ | |||
+ | ==orginalEvent== | ||
+ | Optional. If it is not specified, <code>onClick</code> is assumed | ||
− | + | ==targetId1== | |
+ | Optional. If it's not specified, the '''space owner''' is assumed. If the space owner is not a component (a Page), the target is '''root component'''. | ||
− | + | <!-- AbstractComponent.ForwardListener --> | |
− | + | ==eventData== | |
+ | Optional. | ||
+ | You could specify any application-specific data in the forward condition by surrounding it with the parenthesis as shown below. | ||
<source lang="xml" > | <source lang="xml" > | ||
Line 18: | Line 25: | ||
</source> | </source> | ||
− | If you want to forward several events, you can specify these conditions in the forward attribute by separating them with the comma (,): | + | Then, the application-specific data can be retrieved by the use of <javadoc method="getData()">org.zkoss.zk.ui.event.ForwardEvent</javadoc>. |
+ | |||
+ | == Multiple forwarding == | ||
+ | If you want to forward several events, you can specify all these conditions in the forward attribute by separating them with the comma (,): | ||
<source lang="xml" > | <source lang="xml" > | ||
<textbox forward="onChanging=onUpdating, onChange=some.onUpdate"/> | <textbox forward="onChanging=onUpdating, onChange=some.onUpdate"/> | ||
</source> | </source> | ||
+ | |||
+ | |||
+ | |||
+ | = Description = | ||
+ | It is used to forward an event, that is targeting a specific component, to another component in another event name. It is called the forward condition. | ||
+ | |||
+ | The event listener receives a <javadoc>org.zkoss.zk.ui.event.ForwardEvent</javadoc> object. You can invoke <javadoc method="getOrigin()">org.zkoss.zk.ui.event.ForwardEvent</javadoc> to retrieve the original event. | ||
The target component and the event data can be specified in EL expressions, while the event names cannot. | The target component and the event data can be specified in EL expressions, while the event names cannot. | ||
+ | |||
+ | The target component can also be specified using component [http://books.zkoss.org/wiki/ZK_Developer's_Guide/ZK_in_Depth/Component_Path_and_Accesibility/Access_UI_Component Path] within ZUML page. This is especially useful if target component is in different [http://books.zkoss.org/wiki/ZK_Developer's_Reference/UI_Composing/ID_Space IdSpace] | ||
+ | <source lang="xml" > | ||
+ | <button forward="//mainPage/mainWindow.onSave" /> <!-- default forward event is onClick --> | ||
+ | </source> | ||
+ | |||
+ | |||
+ | |||
+ | {{ZUMLReferencePageFooter}} |
Latest revision as of 01:58, 9 May 2023
Syntax
forward="orginalEvent=targetId1/targetId2.targetEvent" forward="orginalEvent=targetId1/targetId2.targetEvent(eventData)" forward="originalEvent=${el-target}.targetEvent(${el-eventdata})" forward="targetEvent"
orginalEvent
Optional. If it is not specified, onClick
is assumed
targetId1
Optional. If it's not specified, the space owner is assumed. If the space owner is not a component (a Page), the target is root component.
eventData
Optional. You could specify any application-specific data in the forward condition by surrounding it with the parenthesis as shown below.
<button forward="onCancel(abort)"/><!-- "abort" is passed -->
<button forward="onPrint(${inf})"/><!-- the object returned by ${inf} is passed -->
Then, the application-specific data can be retrieved by the use of ForwardEvent.getData().
Multiple forwarding
If you want to forward several events, you can specify all these conditions in the forward attribute by separating them with the comma (,):
<textbox forward="onChanging=onUpdating, onChange=some.onUpdate"/>
Description
It is used to forward an event, that is targeting a specific component, to another component in another event name. It is called the forward condition.
The event listener receives a ForwardEvent object. You can invoke ForwardEvent.getOrigin() to retrieve the original event.
The target component and the event data can be specified in EL expressions, while the event names cannot.
The target component can also be specified using component Path within ZUML page. This is especially useful if target component is in different IdSpace
<button forward="//mainPage/mainWindow.onSave" /> <!-- default forward event is onClick -->