| GitHub Issue | n/a |
| Type | Improvement |
| Priority | n/a |
| Status | Closed |
| Resolution | Cannot Reproduce |
| Resolution Date | 2016-07-01T17:57:08.000+0000 |
| Affected Version/s | Appcelerator Studio 4.5.0 |
| Fix Version/s | n/a |
| Components | Alloy |
| Labels | ios |
| Reporter | Ravindra Babu |
| Assignee | Shak Hossain |
| Created | 2016-06-22T04:31:22.000+0000 |
| Updated | 2016-07-01T17:57:08.000+0000 |
First Image I am showing the normal text to the black color and database text red color.
when I change the text the cursor goes to the end of line and normal text also showing red color please help I am attaching my code also
Hello, The issue is not reproducible with a sample code below. I can muve around the cursor in the text. Cursor does not goes to the end of line when I press backspace. It's only deletes that alphabet. The code you provided is not sufficient enough. We need a full reproducible code. There is editional components in there and no xml and tss code. Please attach a full reproducible code that regenerates the issue in iOS.
index.xml <Alloy> <Window> <TextArea> <AttributedString> Alloy is great! </AttributedString> </TextArea> </Window> </Alloy>index.tss "AttributedString" : { attributes: [ { type: Ti.UI.ATTRIBUTE_FOREGROUND_COLOR, value: 'red', range: [0, 5] }, { type: Ti.UI.ATTRIBUTE_UNDERLINES_STYLE, value: Ti.UI.ATTRIBUTE_UNDERLINE_STYLE_SINGLE, range: [9, 5] } ] }