{ "id": "62812", "key": "TIMOB-2180", "fields": { "issuetype": { "id": "2", "description": "A new feature of the product, which has yet to be developed.", "name": "New Feature", "subtask": false }, "project": { "id": "10153", "key": "TIMOB", "name": "Titanium SDK/CLI", "projectCategory": { "id": "10100", "description": "Titanium and related SDKs used in application development", "name": "Client" } }, "fixVersions": [], "resolution": { "id": "3", "description": "The problem is a duplicate of an existing issue.", "name": "Duplicate" }, "resolutiondate": "2013-11-11T20:32:14.000+0000", "created": "2011-04-15T03:12:54.000+0000", "priority": { "name": "Trivial", "id": "5" }, "labels": [ "tbs-1.9.0" ], "versions": [ { "id": "11225", "name": "Release 1.5.0", "archived": true, "released": true, "releaseDate": "2010-12-14" } ], "issuelinks": [ { "id": "33156", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "outwardIssue": { "id": "63342", "key": "TIMOB-2710", "fields": { "summary": "iOS: tableView's index magnifying glass not linked to the searchBar ", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Medium", "id": "3" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } }, { "id": "33671", "type": { "id": "10002", "name": "Duplicate", "inward": "is duplicated by", "outward": "duplicates" }, "outwardIssue": { "id": "76145", "key": "TIMOB-4591", "fields": { "summary": "Search icon in filter doesn't show searchbar on tap", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "priority": { "name": "Medium", "id": "3" }, "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "subtask": false } } } } ], "assignee": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2017-03-22T20:43:52.000+0000", "status": { "description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.", "name": "Closed", "id": "6", "statusCategory": { "id": 3, "key": "done", "colorName": "green", "name": "Done" } }, "components": [ { "id": "10206", "name": "iOS", "description": "iOS Platform" } ], "description": "{html}

We have a request to add the search bar to the scroll index

\r\n

See this ticket:
\r\nhttp://developer.appcelerator.com/helpdesk/view/50751

{html}", "attachment": [], "flagged": false, "summary": "iOS: Add search to index scrolling on TableView iOS", "creator": { "name": "ctredway1", "key": "ctredway1", "displayName": "ctredway", "active": true, "timeZone": "America/Los_Angeles" }, "subtasks": [], "reporter": { "name": "rpfeiffer", "key": "rpfeiffer", "displayName": "Ralf Pfeiffer", "active": true, "timeZone": "America/Los_Angeles" }, "environment": null, "comment": { "comments": [ { "id": "127750", "author": { "name": "penrique", "key": "penrique", "displayName": "Pedro Enrique", "active": false, "timeZone": "America/Los_Angeles" }, "body": "{html}

Updating ticket with another request:
\nhttp://developer.appcelerator.com/helpdesk/view/71621

{html}", "updateAuthor": { "name": "penrique", "key": "penrique", "displayName": "Pedro Enrique", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2011-04-15T03:12:55.000+0000", "updated": "2011-04-15T03:12:55.000+0000" }, { "id": "127751", "author": { "name": "jeroenk.", "key": "jeroenk.", "displayName": "Jeroen K.", "active": true, "timeZone": "America/Los_Angeles" }, "body": "{html}

Does the ticket Pedro links to means it's also pointed at in the\nhelpdesk for premium subscribers? Will any headway on this be\nreflected on this ticket as well?

{html}", "updateAuthor": { "name": "jeroenk.", "key": "jeroenk.", "displayName": "Jeroen K.", "active": true, "timeZone": "America/Los_Angeles" }, "created": "2011-04-15T03:12:55.000+0000", "updated": "2011-04-15T03:12:55.000+0000" }, { "id": "172483", "author": { "name": "mofle", "key": "mofle", "displayName": "Sindre Sorhus", "active": true, "timeZone": "Europe/Oslo" }, "body": "Any updates on this?\r\n\r\nIt's still missing from Ti 1.7.5 (iOS 4.3/5).\r\n\r\n\r\nh4. Testcase\r\n\r\n{code}\r\nTitanium.UI.setBackgroundColor('#000');\r\n\r\nvar win = Titanium.UI.createWindow({ \r\n title: 'title',\r\n backgroundColor: '#fff'\r\n});\r\n\r\nwin.open({\r\n\tmodal: true,\r\n\ttransition: false\r\n})\r\n\r\nvar table = Ti.UI.createTableView({\r\n\tsearch: Ti.UI.createSearchBar()\r\n});\r\n\r\nwin.add(table);\r\n\r\nvar fillTableView = function() {\r\n\tvar tableData = [];\r\n\tvar header = '';\r\n\tvar index = [];\r\n\tvar i = 0;\r\n\tindex.push({\r\n\t\ttitle: '{search}',\r\n\t\tindex: -1\r\n\t});\r\n\tfor ( var i = 0; i <= 20; i++ ) {\r\n\t\tvar row = Ti.UI.createTableViewRow({\r\n\t\t\ttitle: 'test'\r\n\t\t});\r\n\t\tindex.push({\r\n\t\t\ttitle: i+'',\r\n\t\t\tindex: i\r\n\t\t});\r\n\t\ttableData.push( row );\r\n\t}\r\n\ttable.data = tableData;\r\n\ttable.index = index;\r\n};\r\n\r\nfillTableView();\r\n{code}\r\n\r\n", "updateAuthor": { "name": "mofle", "key": "mofle", "displayName": "Sindre Sorhus", "active": true, "timeZone": "Europe/Oslo" }, "created": "2011-11-14T05:53:39.000+0000", "updated": "2011-11-14T05:53:39.000+0000" }, { "id": "172484", "author": { "name": "mofle", "key": "mofle", "displayName": "Sindre Sorhus", "active": true, "timeZone": "Europe/Oslo" }, "updateAuthor": { "name": "mofle", "key": "mofle", "displayName": "Sindre Sorhus", "active": true, "timeZone": "Europe/Oslo" }, "created": "2011-11-14T05:56:39.000+0000", "updated": "2011-11-14T05:56:39.000+0000" }, { "id": "172486", "author": { "name": "mofle", "key": "mofle", "displayName": "Sindre Sorhus", "active": true, "timeZone": "Europe/Oslo" }, "updateAuthor": { "name": "mofle", "key": "mofle", "displayName": "Sindre Sorhus", "active": true, "timeZone": "Europe/Oslo" }, "created": "2011-11-14T06:25:53.000+0000", "updated": "2011-11-14T06:25:53.000+0000" }, { "id": "279006", "author": { "name": "penrique", "key": "penrique", "displayName": "Pedro Enrique", "active": false, "timeZone": "America/Los_Angeles" }, "updateAuthor": { "name": "penrique", "key": "penrique", "displayName": "Pedro Enrique", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2013-11-11T20:32:14.000+0000", "updated": "2013-11-11T20:32:14.000+0000" }, { "id": "414911", "author": { "name": "lmorris", "key": "lmorris", "displayName": "Lee Morris", "active": false, "timeZone": "America/Los_Angeles" }, "body": "Closing ticket as duplicate of the tickets that are mentioned above and has since been closed.", "updateAuthor": { "name": "lmorris", "key": "lmorris", "displayName": "Lee Morris", "active": false, "timeZone": "America/Los_Angeles" }, "created": "2017-03-22T20:43:52.000+0000", "updated": "2017-03-22T20:43:52.000+0000" } ], "maxResults": 7, "total": 7, "startAt": 0 } } }