Hello
I need to make some inquiries with ScrollableView object, this tells me that I have seen and slip into them, but I have created modules that contain functions and other objects that make up each view. You can create these modules while the visible view?
var win = Ti.UI.createWindow(); win.orientationModes=[Titanium.UI.PORTRAIT]; var scrollableView = Ti.UI.createScrollableView(); win.add(scrollableView); /***Inicio se Sesión***/ var panel = require('panel'); var view1 = panel(scrollableView); /*Finaliza el inicio de sesión*/ /***Seleccion de sucursales***/ var branches = require('branches'); var view2 = branches(scrollableView); /*Finaliza seleccion de sucursales*/ /***Seleccion de informes***/ var form = require('form'); var view3 = form(scrollableView); /*Finaliza informes*/ var check = Ti.UI.createView({backgroundColor:'orange'}); scrollableView.views = [view1,view2,view3,check]; win.open();