Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Critical
-
Resolution: Invalid
-
Affects Version/s: Release 3.1.0
-
Fix Version/s: 2013 Sprint 07 API, 2013 Sprint 07
-
Component/s: Android
-
Labels:
-
Environment:
SDK: 3.1.0.v20130322171500
Studio:3.0.2.201302191606
Device: Galaxy Nexus(v 4.0.4), Nexus 7 (V4.1)
Mac OS - 10.8
CLI - 3.0.25-alpha
Description
This is regression. The issue does not exist on 3.0.2. But the textfield in tableviewrow is never editable on any build.
Steps to Reproduce:
1. Create an application with code below and launch the application
2. Click on any row in the tableview
Actual: Softkeyboard appears but disappears immediately.
Expected: Softkeyboard should not disappear immediately. It should disappear when click return on the keyboard.
var _window = Ti.UI.createWindow();
|
_window.fullscreen = false;
|
_window.backgroundColor = 'white';
|
|
var tableView = Ti.UI.createTableView({
|
top : '0dp',
|
bottom : '0dp',
|
left : '0dp',
|
right : '0dp'
|
});
|
|
var numRows = 15;
|
var rows = [];
|
for (var i = 0; i < numRows; i++){
|
var tableViewRow = Ti.UI.createTableViewRow({
|
height : 'auto'
|
});
|
|
var textField = Ti.UI.createTextField({
|
top:'0dp',
|
left : '5dp',
|
right : '5dp',
|
borderColor : '#CCCCCC',
|
borderStyle : Ti.UI.INPUT_BORDERSTYLE_BEZEL
|
});
|
|
tableViewRow.add(textField);
|
|
rows.push(tableViewRow);
|
}
|
tableView.data = rows;
|
_window.add(tableView);
|
_window.open();
|
Attachments
Issue Links
- relates to
-
TIMOB-10548 Android:Tableview:Soft keyboard launch revokes focus from rows (containing textfield)
-
- Closed
-