On Apr 24, 10:47 pm, Larry White <[email protected]> wrote: > I use a mac and (of course) can't get tabbing to work "right" with GWT forms > because I haven't changed my System properties to tell it to NOT skip over > radio buttons, standard buttons, etc. My question is that the SmartGWT > actually tabs correctly (IMHO) on the mac _without_ any system preference > changes. Does anybody know how that could be done with the standard GWT > widget set? Setting tabIndex() doesn't work.
AFAICT, from their showcase, SmartGWT uses "custom" checkboxes and buttons, which are not true checkboxes and buttons (the checkbox is an image, and there's a hidden textarea to handle focusability; and the button is done using a table). You could do the same in "standard GWT widget set" using a PushButton (button), ToggleButton (checkbox) and/or CustomButton (custom "faces" which could look like a checkbox if you like). -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
