List View - PrompterAccept Event
Fired when a value is selected in a prompter
Member of List View (PRIM_LTVW)
Parameters
Name |
Type |
Data Type |
Description |
Form |
*Input |
Reference to the prompter form |
|
ApplyValue |
*Both |
Boolean |
Set to false to stop the prompter value being applied |
FocusAction |
*Both |
Enumeration |
Defines where focus should be placed |
ReshowPrompter |
*Both |
Boolean |
Set to true to show the prompter again |
Details
The PrompterAccept event is fired when a value is selected in a prompter form.
PrompterAccept provides control over how the application will respond to the selection of a value.
Example
In this example, when the prompter value is accepted, Focus is pushed to the next field in the tab sequence.
Evtroutine Handling(#CustomerID.PrompterAccept) Focusaction(#FocusAction)
#FocusAction := Tab
Endroutine