Hello, At present the following logic in GoButtonRenderer renders a goButton as a LINK (html 'a' tag) on PDAs because they don't support button tag :
String element = useButtonTag ? "button" : "a"; I wonder why a link is renderered when browsers that don't support 'button' tag *CAN* support 'input' tag of type 'Button'. Shall I change this to input type ? -Piyush
