{ "id": "63202", "key": "TIMOB-2570", "fields": { "issuetype": { "id": "1", "description": "A problem which impairs or prevents the functions of the product.", "name": "Bug", "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": "2", "description": "The problem described is an issue which will never be fixed.", "name": "Won't Fix" }, "resolutiondate": "2016-08-19T17:04:31.000+0000", "created": "2011-04-15T03:23:05.000+0000", "priority": { "name": "Low", "id": "4" }, "labels": [ "gui", "jss" ], "versions": [], "issuelinks": [], "assignee": { "name": "ingo", "key": "ingo", "displayName": "Ingo Muschenetz", "active": true, "timeZone": "America/Los_Angeles" }, "updated": "2017-03-20T17:54:42.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}
If a jss file is modified after a full rebuild has already been\ncompleted, the changes do not take effect. To reproduce:
\nCreate a simple app.js file, add a button and add it to the\nwindow.
\nvar button = Ti.UI.createButton({id:'b'})
\nCreate app.js and add some properties for the button:
\n#b { width:100; height: 90; title: \"tyskland\"; }
\nLaunch the app. If this is the first time the project has been\nrun, the build process will take place and the app will start. The\nbutton will appear as expected. Now modify the title for the\nbutton. Save the file and re-deploy with the emulator. Notice that\nthe new title is not displayed, the old title is still visible.
\nReproduced against 1.5 RC2 running iphone simulator.
I think \nmy problem and yours is the same bug..
\nSteps to reproduce:
\n1. Create a new (1.5.1) project
\n2. Run iPhone-emulator
\n3. Create the app.jss
\n4. Run the emulator again (the layout hasn't changed)
Yeah, I'm hitting the same bug... It's still not fixed with the\nlatest (2011.01.27 ) build.... So, jss is quite useless for now,\nright?
This seems to have worked for me:
\ncp build/iphone/Resources/stylesheet.plist\nbuild/iphone/build/Debug-iphonesimulator/UnionPlus.app/stylesheet.plist
I should mentioned that you'll want to change the \".app\" path in\nthere for the name of your app (mine is UnionPlus.app in the\nexample)