[TIMOB-19098] iOS: ListView editActions should hide after selecting an action
| GitHub Issue | n/a |
| Type | Bug |
| Priority | Medium |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2015-07-06T03:12:37.000+0000 |
| Affected Version/s | Release 4.1.0 |
| Fix Version/s | Release 5.0.0 |
| Components | iOS |
| Labels | listview |
| Reporter | Fokke Zandbergen |
| Assignee | Hans Knöchel |
| Created | 2015-06-29T14:16:58.000+0000 |
| Updated | 2015-09-02T00:06:04.000+0000 |
Description
The attached screen recording shows that after selecting a custom action, the actions don't hide. I have to swipe the row to the right to hide the actions.
I'd expect the actions to hide after selecting one.
Attachments
| File | Date | Size |
| noclose.mov | 2015-06-29T14:13:19.000+0000 | 1346468 |
PR: https://github.com/appcelerator/titanium_mobile/pull/6955
[~hansknoechel] Whenever possible, attach or paste sample code.
var win = Ti.UI.createWindow(); var listSection = Ti.UI.createListSection({ items: [{ properties: { canEdit: true, title: 'Swipe me', editActions: [{ title: 'First' }, { title: 'Second' }, { title: 'Third' }] } }] }); var listView = Ti.UI.createListView({ top: 20, sections: [listSection] }); win.add(listView); win.open();CR and FT passed. PR merged.
Closing ticket as fixed. Verified that if you select an editAction, the actions are hidden afterwards. Tested on: Appc CLI NPM: 4.2.0-1 Appc CLI Core: 5.0.0-33 Arrow: 1.2.52 SDK: 5.0.0.v20150901105514 Node: v0.10.38 OS: Yosemite (10.10.5) Xcode: 7 beta 6 Devices: iphone 6 (8.4.1), iphone 6 simulator (9.0)