Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-13531] BlackBerry: Remove control is not working.

GitHub Issuen/a
TypeBug
PriorityHigh
StatusClosed
ResolutionFixed
Resolution Date2013-07-26T04:00:37.000+0000
Affected Version/sn/a
Fix Version/s2013 Sprint 15 API, 2013 Sprint 15, Release 3.1.2, Release 3.2.0
ComponentsBlackBerry
Labelsmodule_imageview, qe-closed-3.1.2, qe-testadded
ReporterRussell McMahon
AssigneePedro Enrique
Created2013-04-11T22:31:21.000+0000
Updated2014-06-19T12:44:34.000+0000

Description

table.addEventListener('click', function(e) { scrollView.remove(view); win2.remove(scrollView); });

Comments

  1. Russell McMahon 2013-07-22

    I think this already works let's verify and if still broken let's put more info and move to Sprint 16 or 17.
  2. Pedro Enrique 2013-07-26

    PR: https://github.com/appcelerator/titanium_mobile_blackberry/pull/136
  3. Pedro Enrique 2013-07-26

    Test code
       var win = Ti.UI.createWindow({
           layout: 'vertical'
       });
       
       
       var btn = Ti.UI.createButton({
           top:10,
           title: 'Button'
       });
       
       win.add(btn);
       
       var view = Ti.UI.createView({
           top: 10,
           width: 100,
           height: 100,
           backgroundColor: 'green'
       });
       
       win.add(view);
       
       var red = Ti.UI.createView({
           backgroundColor: 'red',
           width: 100,
           height: 100,
           top: 10
       });
       win.add(red);
       btn.addEventListener('click', function(e){
           win.remove(btn);
           win.remove(view);
       });
       win.open();
       
  4. Federico Casali 2013-08-09

    Verified working as expected (classic and Alloy projects). Titanium SDK 3.1.2.v20130808180613 Alloy 1.2.0-alpha6 Appcelerator Studio 3.1.2.201308071912 CLI 3.1.2-alpha Node 0.10.13 Closing.

JSON Source