This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ADCIadView() { | |
(function() { | |
Ti.App.Properties.setInt('AD_TOP', 0); | |
Ti.App.Properties.setInt('AD_LEFT', 0); | |
Ti.App.Properties.setInt('AD_HEIGHT', 320); | |
Ti.App.Properties.setInt('AD_WIDTH', 50); | |
Ti.App.Properties.setInt('IAD_ZINDEX', 10); | |
Ti.App.Properties.setBool('TEST_OR_DEVELOPMENT', | |
((Ti.App.deployType=='test'||Ti.App.deployType=='development')?true:false)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* TableView.editingとTableView.movingをtrueにしても、 | |
* 後にtrueにした方のアイコンが描画がされなくて困った件(解決済み)。 | |
* | |
* 解決策:TableViewRow.moveableをtrueに設定し、TableView.editingをtrueにするだけ。 | |
* この際に、TableView.movingをtrueにしなくても移動アイコンも表示されます。 | |
* ※Kitchen Sinkのtable_view_edit_and_move.jsにやり方が書いてました。 | |
* | |
*/ | |
function Window() { |
NewerOlder