Skip to content

Commit

Permalink
docs(ios): added note for click event on textfield and text area (#11504
Browse files Browse the repository at this point in the history
)

Fixes TIMOB-27717
  • Loading branch information
sgtcoolguy authored Mar 4, 2020
1 parent 7fbf2c7 commit 7a08810
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apidoc/Titanium/UI/TextArea.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ description: |
</table>
Use the <Titanium.UI.createTextArea> method or **&lt;TextArea&gt;** Alloy element to create a text area.
#### `click` event in iOS
In iOS 11+, `click` event in text area is not fired due to changes from apple.
Use `touchstart` event instead of `click` event.
extends: Titanium.UI.View
since: "0.8"
excludes:
Expand Down
6 changes: 6 additions & 0 deletions apidoc/Titanium/UI/TextField.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ description: |
</table>
Use the <Titanium.UI.createTextField> method or **`<TextField>`** Alloy element to create a text field.
#### `click` event in iOS
In iOS 11+, `click` event in text field is not fired due to changes from apple.
Use `touchstart` event instead of `click` event.
extends: Titanium.UI.View
since: "0.8"
excludes:
Expand Down

0 comments on commit 7a08810

Please sign in to comment.