Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    CheckboxItem, SelectItem in SMARTGWT is behaving as text field in IPAD/Safari browser

    CheckboxItem, 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.
    iPad IOS - 6
    Safari - 6
    gwtVersion -2.1.1
    smartgwtVersion-2.4
    Attached Files

    #2
    setAttribute("editorType", "CheckboxItem") resolves the issue in IPAD/Safari browser.

    After doing a vigorous research found the below solution and solves the problem.

    yourFormItemVarable.setAttribute("editorType", "CheckboxItem");
    yourFormItemVarable.setAttribute("editorType", "SelectItem");

    Comment

    Working...
    X