[TIMOB-6582] Android: rightButton not working on Android textFields
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | High |
| Status | Closed |
| Resolution | Invalid |
| Resolution Date | 2013-02-21T15:32:46.000+0000 |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | Android |
| Labels | api, exalture |
| Reporter | Ian Howarth |
| Assignee | Sunila |
| Created | 2011-12-12T14:49:11.000+0000 |
| Updated | 2017-03-13T17:56:35.000+0000 |
Description
var win = Ti.UI.createWindow();
var button = Ti.UI.createButton({top:40,height:30, width:30, title:'B'});
var text = Ti.UI.createTextField({
width:100,
height:40,
backgroundColor:'#fff',
top:40,
rightButton: button,
rightButtonMode: Titanium.UI.INPUT_BUTTONMODE_ALWAYS
});
win.add(text);
win.open();
Right button is an IOS native feature, it is not supported in Android.
Closing ticket as invalid.