Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-13608] BlackBerry: Progress bar do not have labels attached to it by default as android or IOS

GitHub Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionWon't Fix
Resolution Date2013-06-28T19:04:26.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsBlackBerry
Labelssdk-bb
ReporterLokesh Choudhary
AssigneeRussell McMahon
Created2013-04-17T21:46:47.000+0000
Updated2017-03-13T18:29:20.000+0000

Description

Description: 1. Create an app for BB 2. Replace the app.ja with the code below

var win = Ti.UI.createWindow({
	backgroundColor:'white'
});

var pb=Titanium.UI.createProgressBar({
    top:40,
    width:'auto',
    height:'auto',
    min:0,
    max:60,
    value:20,
    color:'#fff',
    message:'Downloading 0 of 10',
    font:{fontSize:14, fontWeight:'bold'},
   
});
win.add(pb);
pb.show();
win.open();
2. Observe the app after it launches Actual Results: 1. The progress bar is visible but not the label Expected Results: 1. The progress bar along with the label is visible

Comments

  1. Lee Morris 2017-03-13

    Closing this ticket as the issue will not fix.

JSON Source