Search found 4 matches
- Tue Oct 25, 2016 4:13 pm
- Forum: Questions & Answers
- Topic: How to catch Tab key in PRIM_LIST.DropDown (VLF-ONE)
- Replies: 8
- Views: 11602
Re: How to catch Tab key in PRIM_LIST.DropDown (VLF-ONE)
If the user uses the tab key to leave the field you perform some calculations. What if they just click somewhere else?
I have a button that does the said calculation. The goal is to perform the same calculation when you press Tab as well.
For the behaviour you're describing, LostFocus or ...
- Tue Oct 25, 2016 2:43 pm
- Forum: Questions & Answers
- Topic: How to catch Tab key in PRIM_LIST.DropDown (VLF-ONE)
- Replies: 8
- Views: 11602
Re: How to catch Tab key in PRIM_LIST.DropDown (VLF-ONE)
There is no way of stopping the Tab key working the way Tab is intended to work, other than by manipulating the TabStop and TabPosition properties of other components.
This is what I've done on a similar component containing an input field: The component waits for the Tab key on the field's ...
This is what I've done on a similar component containing an input field: The component waits for the Tab key on the field's ...
- Tue Oct 25, 2016 11:01 am
- Forum: Questions & Answers
- Topic: How to catch Tab key in PRIM_LIST.DropDown (VLF-ONE)
- Replies: 8
- Views: 11602
Re: How to catch Tab key in PRIM_LIST.DropDown (VLF-ONE)
So why can't you just set the correct Tab Order?
It will be used in a generic, ancestor-type component and the target object (i.e., the "next" component after hitting Tab) could be anything that can receive focus.
What you're effectively saying is that two different controls will be able to ...
- Mon Oct 24, 2016 4:42 pm
- Forum: Questions & Answers
- Topic: How to catch Tab key in PRIM_LIST.DropDown (VLF-ONE)
- Replies: 8
- Views: 11602
How to catch Tab key in PRIM_LIST.DropDown (VLF-ONE)
Hello everyone,
Good day. Newbie here and hoping to get some help. I'm trying to add a feature within a VLF-ONE Reusable Part where a DropDown (PRIM_LIST.DropDown) would be able to signal an event when the Tab key is pressed. The goal is to be able to set the focus on another component (not the ...
Good day. Newbie here and hoping to get some help. I'm trying to add a feature within a VLF-ONE Reusable Part where a DropDown (PRIM_LIST.DropDown) would be able to signal an event when the Tab key is pressed. The goal is to be able to set the focus on another component (not the ...