Hi there,
I have the weird issue with the tabbing order. Please see the attached picture. I have note down in PINK the tabbing order i needed. But when i set the tab index as the above, it tabs in the wrong way which shows in RED. It straight away jump from the "type" field (which is a combo) to "Address" field. and then it keeps on going in every field in that particular groupbox, and then jumps back to the one before "type" field.
I read your other posts and even set the tabindex in groupboxes , but it doesnt seems to work!! its pretty annoying and i feel is it something in regards to the COMBOBOX tabindex??????
PLease let me know ASAP since I have been stuck in this for awhile and its an urgent requirement!!!
Let me know if you r unclear about the picture....
Waiting for a prompt reply!!!!!!
Thanks in advance!!
Hi,
nomiw said:Please see the attached picture.
There isn't any picture attached to your post.To attach an image, go to the Options tab and you can attach a file. If you attach an image file, like a Jpeg, it will display as an image.
sorry attached the pic again... need a response ASAP!! thanks in advance!!!
Hm. I don;t know if you are having the same issue, but I recently looked into an issue like this which was caused by the ContainerControl class. I can't see by a screen shot if your application is using any ContainerControls, but this class has all sorts of strange behaviors when it comes to tabbing and focus.
If that is the case, then there are a couple of possible solutions.
The obvious one is to avoid using ContainerControls. Check the controls you are using here - see if the UltraComboEditor is inside a Panel. It's clearly inside a GroupBox, but I'm not sure if that's the inbox GroupBox of the UltraGroupBox. Either way, check at runtime to see if that control is a ContainerControl. If it is, you may be able to work around the issue by removing that control.
Another option is to use UltraCombo instead of UltraComboEditor. The issue I was just looking at only happens with UltraComboEditor because of the separate ValueListDropDown control it is using. UltraCombo doesn't use a separate control, so it doesn't have the same problem.
Thanks Mike. I have tried both of the above. But didnt seem to work and was trying recreating the form as well :(
But i have used the AfterExitEditMode on that particular field and set focus to the other field, which should be next. It works perfectly.
PLease try to fix that bug on tabindex focus coz it waisted lot of time!
If using UltraCombo did not help, then you are probably experiencing a different issue than the one I was talking about.
In that case, we would need you to provide a small sample project demonstrating the problem in order to look into it.