|
 Method1 Column Link
Link Text: #ENAME#
Target: URL
URL: javascript:$.event.trigger('DAEvent', [['#EMPNO#','#MGR#']]);
 Method 2 Column Link
Link Text: #ENAME#
Target: URL
URL: javascript:$.event.trigger({ type:'Method2', empno:'#EMPNO#',mgr:'#MGR#' });
 Method 3 Column Link
Link Text: #ENAME#
Target: URL
URL: javascript:$.event.trigger('Method3', [{empno:'#EMPNO#', mgr:'#MGR#'}]);
 Dynamic Action - Method 1
When:
Event: Custom
Custom Event: DAEvent
Selection Type: DOM Object
DOM Object: document
Condition: - No Condition -
True Actions:
Sequence: 5
Action: Execute Javascript Code
Code: alert('empno is '+this.data[0]+' and mgr is '+this.data[1]);
 Dynamic Action - Method 2
When:
Event: Custom
Custom Event: Method2
Selection Type: DOM Object
DOM Object: document
Condition: - No Condition -
True Actions:
Sequence: 5
Action: Execute Javascript Code
Code:
alert('empno is '+this.browserEvent.empno+' and mgr is '+this.browserEvent.mgr);
 Dynamic Action - Method 3
When:
Event: Custom
Custom Event: Method3
Selection Type: DOM Object
DOM Object: document
Condition: - No Condition -
True Actions:
Sequence: 5
Action: Execute Javascript Code
Code: alert('empno is '+this.data.empno+' and mgr is '+this.data.mgr);
|