[AC-791] Text cursor doesn't move in TextArea when the text is in Hebrew (Android)
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | n/a |
| Status | Closed |
| Resolution | Cannot Reproduce |
| Resolution Date | 2015-07-04T00:11:18.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | Titanium SDK & CLI |
| Labels | TCSupportTriage, android, textArea |
| Reporter | Itay Avtalyon |
| Assignee | Radamantis Torres-Lechuga |
| Created | 2014-11-12T15:40:48.000+0000 |
| Updated | 2016-03-08T07:37:03.000+0000 |
Description
When a text area contain a text in Hebrew (an RTL language) the cursor doesn't move - it is "stuck" at the beginning, and you cannot delete, and any characters are added in the beginning.
EXPECTED BEHAVIOR: The cursor should move to any position in the text area.
SAMPLE CODE: Put the following text area inside the main view (I used the template for a single window app):
var editor = Ti.UI.createTextArea({
value: 'שלום עולם'
});
self.add(editor);
No comments