| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | | Quintiq file version 2.0 |  | #parent: ListInitElement |  | Response OnClick (LibWiz_InitElement selection) id:Response_ListInitElement_MenuMoveUp_OnClick |  | { |  |   #keys: '[121114.1.2068004005]' |  |   Body: |  |   [* |  |     // Move up InitElement |  |      |  |     selection.Parent().MoveBefore( selection, selection.Previous() ); |  |   *] |  |   CanBindMultiple: false |  |   DefinitionID => /ListInitElement/Responsedef_ListInitElement_Menu_OnClick |  |   Initiator: 'MenuMoveUp' |  |   Precondition: |  |   [* |  |     // Enable when there is a previous element (Parent should always be there) |  |      |  |     return not isnull( this.Parent() ) and not isnull( selection.Previous() ); |  |   *] |  | } | 
 |