Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-8833] BlackBerry: Implement important Titanium.UI.SearchBar functionality

GitHub Issuen/a
TypeStory
PriorityMedium
StatusClosed
ResolutionWon't Fix
Resolution Date2014-05-08T17:35:37.000+0000
Affected Version/sn/a
Fix Version/sBacklog
ComponentsBlackBerry
Labelsnotable
ReporterFrancois Boisvert
AssigneePedro Enrique
Created2012-04-20T11:29:24.000+0000
Updated2017-03-08T18:44:25.000+0000

Description

A specialized text field for entering search text. The SearchBar object is closely modeled on an iOS native search bar. As such, not all features are supported on other platforms. In iOS, a direct mapping of UISearchBar https://developer.apple.com/library/ios/#documentation/UIKit/Reference/UISearchBar_Class/Reference/Reference.html

Comments

  1. Tatyana Petrenko 2012-05-24

    sz: Universal Search API is coming before release. Meanwhile a TextField could be used.
  2. Tatyana Petrenko 2012-07-31

    R6 does not provide this functionality. Reducing the priority and leaving this task for another release.
  3. Pedro Enrique 2014-05-08

    Blackberry 10 does not have a "searchBar" component. I have created the Ti API which returns a textField instead. If you take a look at bootstrap.js, you'll find this:
       Ti.UI.createSearchBar = function(args) {
           args = args || {};
           Ti.API.warn('Ti.UI.createSearchBar() is not supported in BB10, using textField instead');
           return Ti.UI.createTextField(args);
       };
       
  4. Lee Morris 2017-03-08

    Closing ticket as it will not fix.

JSON Source