Hello.
I’m using the propertygrid Control and I want to know if is there a way to move the cursor from one field to another field by using the TAB key. Because the control Behavior changes from the propertyGrid Control to another control in the gui.
Actually the users have to use the mouse to navigate through the propertygrid Ctrl so I guess this becomes into a bad user experience.

Am not sure if this is possible by defualt in wxPython. However, someone provided a solution in C++ at: http://kiwigis.blogspot.com.ng/2009/05/adding-tab-key-support-to-propertygrid.html
···
On Thursday, June 30, 2016, sebastián lópez selobu@gmail.com wrote:
Hello.
I’m using the propertygrid Control and I want to know if is there a way to move the cursor from one field to another field by using the TAB key. Because the control Behavior changes from the propertyGrid Control to another control in the gui.
Actually the users have to use the mouse to navigate through the propertygrid Ctrl so I guess this becomes into a bad user experience.
–
You received this message because you are subscribed to the Google Groups “wxPython-users” group.
To unsubscribe from this group and stop receiving emails from it, send an email to wxpython-users+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
–
*Wouldn’t you rather do Business with us? *
This message is for the designated recipient only and may contain
privileged, proprietary, or otherwise private information. If you have
received it in error, please notify the sender immediately and delete the
original. Any use of the email by you is prohibited. If you have received
this communication in error, please notify the author by replying to this
e-mail immediately.
www.BintaSMS.com <http://www.bintasms.com/>
www.BintaComputers.net <http://www.bintacomputers.net/>
Might be too obvious, but: Does it work to add wx.TAB_TRAVERSAL to the
style when creating the propertygrid? I don't recall ever using
propertygrid myself, but tab traversal works with many controls.
···
On Thu, Jun 30, 2016 at 12:45 PM, sebastián lópez <selobu@gmail.com> wrote:
Hello.
I'm using the propertygrid Control and I want to know if is there a way to
move the cursor from one field to another field by using the TAB key.
Because the control Behavior changes from the propertyGrid Control to
another control in the gui.
Actually the users have to use the mouse to navigate through the
propertygrid Ctrl so I guess this becomes into a bad user experience.
wx.TAB_TRAVERSAL works when tabing between different controls but not within propertygrid fields.
···
On Thu, Jun 30, 2016 at 12:45 PM, sebastián lópez selobu@gmail.com wrote:
Hello.
I’m using the propertygrid Control and I want to know if is there a way to move the cursor from one field to another field by using the TAB key. Because the control Behavior changes from the propertyGrid Control to another control in the gui.
Actually the users have to use the mouse to navigate through the propertygrid Ctrl so I guess this becomes into a bad user experience.
Might be too obvious, but: Does it work to add wx.TAB_TRAVERSAL to the style when creating the propertygrid? I don’t recall ever using propertygrid myself, but tab traversal works with many controls.