Popup Selection (RevG Specific)
At 23 MAY 2004 06:05:35PM Prashant Mittal wrote:
Is it possible to call a popup in such a way that the value is selected when the user presses "Tab" instead of "Enter" ?
Thanks
Prahsant
At 24 MAY 2004 03:26AM support@sprezzatura.com wrote:
Is this REALLY a RevG query?
support@sprezzatura.com
The Sprezzatura Group Web Site
World Leaders in all things RevSoft
At 24 MAY 2004 08:05PM Prashant Mittal wrote:
Put it in Openinsight 32 bit topics but no one got back to me on this one :( So i thought might as well try RevG.
At 25 MAY 2004 04:11AM support@sprezzatura.com wrote:
It just seems a strange request initially - users of Windows will expect tab to take them to the next prompt so effectively what you're saying is "on the gotfocus of the next prompt/button/whatever look at the popup edittable and if nothing is selected select it"? Well obviously complications with tab vs mouse but….
Can you explain a little more iwhy/i you wish to do this in case we can see better ways?
support@sprezzatura.com
The Sprezzatura Group Web Site
World Leaders in all things RevSoft
At 25 MAY 2004 07:25PM Prashant Mittal wrote:
Acutally i have a form on which when the user enters a new record all
the textitems with the popoups on them are filled in with default
values initially. Now all the Popups are called on the Gotfocus event
of each of these text items so when the control comes in these text
items i call the popup with the default value already selected by
passing POP_DEF parameter in the popup defination. I just want
that if the user is happy with the default selection he can just
Press tab so that the popup returns the default selected value and
moves on. At present user has to press enter to select the value.
Thanks,
Prashant
At 07 JUN 2004 09:23PM Prashant Mittal wrote:
Any1 there??!?!?!?!!
This is sort of urgrent.
Thanks
Prashant
At 07 JUN 2004 10:33PM Donald Bakke wrote:
Prashant,
I thought Sprezz gave you some food for thought on this. This really isn't a simple task if you are going to use the PopUp tool. You would have to modify the source code to do what you want. In my opinion this will be very difficult, if not impossible, to accomplish satisfactory.
Why don't you use a dropdown combobox instead? During the GOTFOCUS event just set the DROPDOWN property to 1. It will auto-select the value in the control and the TAB key will take the end user to the next control. This is a much more intuitive approach.
dbakke@srpcs.com
At 13 JUN 2004 05:03PM Prashant Mittal wrote:
Thanks will take a look at it.
Actually i knew this could be done using a combo box but just wanted to try to do it using a popup.