I have a web application running in chrome with:
a header panel containing images and labels
an Id panel containing DB labels and regular labels
a notification memo with TabStop= False
a pagecontrol containing various pages
a panel with forward and back buttons.
I have a problem with tab sequencing on many of the pages. Here is an example for one of the TTMSFNCPageControlContainer contents.
The page has the following:
WebDBRadioGroup with three items
panel with various webDBEdit components
SetFocus is on the radio group whenever the page is changed.
The tab sequence should be:
Radio Group
1st Edit in the Panel
Other edits in turn
Forward Button
Backward Button
I don't care where it goes next.
The actual sequence is:
Radio Group (start)
Off page to the Browser's "View Site Information"
Off page to the Browser's URL
Off page to the Forward Button
Off page to somewhere else ???
Off page to the Back Button
First Edit in the panel on the page
Sequence through edits is correct.
Delphi TPanels have TabStop and TabOrder properties. TWebPanels and TWebDBRadioGroups do not. I have not been able to get the sequencing to work correctly. Additional there is no OnExit event for the WebDBRadioGroup.
What do you suggest be done to get the tab sequencing to work properly.