• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

SelectItem in GWT is behaving as text field in IPAD/Safari browser only

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
SelectItem in GWT is behaving as text field in IPAD/Safari browser only. And the typed text is displaying in the hint dialog which is shown in the attached file.
But this type of odd behavior is not appearing in any other browsers and other OS. Please show some light on this IPAD/Safari issue.

Working on the following versions.
Mac OS X - 10.7.5
iPad Simulator - 6
Safari - 6
gwtVersion -2.1.1
smartgwtVersion-2.4


Untitled.png
[Thumbnail for Untitled.png]
 
vikky karu
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
After doing a vigorous research found the below solution and solves the problem.

yourFormItemVarable.setAttribute("editorType", "CheckboxItem");
yourFormItemVarable.setAttribute("editorType", "SelectItem");
 
reply
    Bookmark Topic Watch Topic
  • New Topic