Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-3714] Confirm TIMOB-2955

GitHub Issuen/a
TypeSub-task
PriorityHigh
StatusClosed
ResolutionFixed
Resolution Date2011-04-27T02:08:08.000+0000
Affected Version/sn/a
Fix Version/sRelease 1.7.0, Sprint 2011-17
ComponentsAndroid
Labelsn/a
ReporterDon Thorp
AssigneeBill Dawson
Created2011-04-26T09:34:37.000+0000
Updated2011-04-27T02:08:08.000+0000

Description

Comments

  1. Bill Dawson 2011-04-27

    Titanium Mobile 1.7.0 6b80fd93 HTC Desire, Android 2.2 * There is already a drillbit test which is passing. * I created a separate app to alert() the stringified JSON and confirm with the eye that the booleans are true booleans and not strings.
       Titanium.UI.setBackgroundColor('#000');
       var win = Titanium.UI.createWindow({  
           title:'Test',
           backgroundColor:'#000',
       	exitOnClose: true
       });
       
       var a = [
       	{x: true, y: {z: false}},
       	{x: false, y: {z: true}}
       ];
       
       alert(JSON.stringify(a));
       win.open();
       

JSON Source