0

基本的なタブ付きモデルから始めて、KitchenSink の使用を変更し始め、ニーズに合わせて「カスタマイズ」しました。それぞれ独自の垂直レイアウトとテーブルビュー行に開く3つのテーブルビューを作成しました。なぜか読んだことのない作品。最初のタブに何も添付できません。助けていただければ幸いです。

JSファイルの一部も含めました

app.js

(function() {
//determine platform and form factor and render approproate components
var osname = Ti.Platform.osname,
    version = Ti.Platform.version,
    height = Ti.Platform.displayCaps.platformHeight,
    width = Ti.Platform.displayCaps.platformWidth;

//considering tablet to have one dimension over 900px - this is imperfect, so you   should feel free to decide
//yourself what you consider a tablet form factor for android
var isTablet = osname === 'ipad' || (osname === 'android' && (width > 899 ||    height > 899));

var Window;
if (isTablet) {
    Window = require('ui/tablet/ApplicationWindow');
}
else {
    Window = require('ui/handheld/ApplicationWindow');
}

var ApplicationTabGroup = require('ui/common/ApplicationTabGroup');
new ApplicationTabGroup(Window).open();

})();

アプリケーションタブグループ。

function ApplicationTabGroup(Window) {
//create module instance
var self = Ti.UI.createTabGroup();

//create app tabs
var win1 = new Window(('Core Measures')),
    win2 = new Window(('Patient'));
    win3 = new Window(('Provider'));

var tab1 = Ti.UI.createTab({
    title: ('Core Measures'),
    window: win1
});
win1.containingTab = tab1;

var tab2 = Ti.UI.createTab({
    title: ('Patient'),
    window: win2
});
win2.containingTab = tab2;

var tab3 = Ti.UI.createTab({
    title: ('Provider'),
    window: win3
});
win3.containingTab = tab3;

self.addTab(tab1);
self.addTab(tab2);
self.addTab(tab3);

return self;

};

module.exports = ApplicationTabGroup;

テーブルビュー

function CoreMeasures(title) {
var self = Ti.UI.createWindow({
    title:.title,
    backgroundColor:'white'
});
//create table view data object
var data = [
   {title: 'Pneumonia', hasChild : true, test: 'ui/common/pneumonia'},
   {title: 'CHF', hasChild: true, test:ui/common/CHF'},
   {title: 'Myocardial Infarction', hasChild: true, test: 'ui/common/Myocardial Infarction'};
]




// create table view
for (var i = 0; i < data.length; i++ ) { 
var d = data[i];
if(d.touchEnabled !==false) {
    d.color = '#000'
    data:data
});

// create table view event listener
tableview.addEventListener('click', function(e)
{
   if (e.rowData.test)
    {
        var ExampleWindow = require(e.rowData.test),
            win = new ExampleWindow({title:e.rowData.title,containingTab:self.containingTab,tabGroup:self.tabGroup});
        if (Ti.Platform.name == "android") {

        } else {
            win.backgroundColor = "#fff"
4

1 に答える 1