我有一个带有表的widget.js,在他的headerView中我有一个控制器视图。代码:
var table = Ti.UI.createTableView({
id: ('table' + i),
data: tableData,
separatorStyle: OS_ANDROID ? Ti.UI.TABLE_VIEW_SEPARATOR_STYLE_NONE : Ti.UI.iPhone.TableViewSeparatorStyle.NONE,
headerView: Alloy.createController("Principal/Componentes/LocalizacionRow", {parent: $.board}).getView()
});
我想使用$ .trigger将一个事件从LocalizacionRow传递给widget.js,但它不起作用。
我的代码:
LocalizacionRow.js
if(!e.cancel){
$.localizacion.text = e.data[0].value;
$.trigger('recargar');
Ti.API.info("## Periódico: " + Ti.App.Properties.getString('media') + " " + $.localizacion.text);
}
widget.js
var header = table.getHeaderView();
header.on('recargar', function(e){
Ti.API.debug("--- Recargar");
});
" --- Recargar"从未表现出来。我做得不好?
我在这里看到了这段代码:http://www.tidev.io/2014/09/10/the-case-against-ti-app-fireevent-2/
在这里:https://wiki.appcelerator.org/display/guides2/Controller+events
答案 0 :(得分:1)
如果您想收到活动,您必须向LocalizacionRow
控制器添加一个触发器,如下所示:
var LocalizacionRowController = Alloy.createController("Principal/Componentes/LocalizacionRow", {parent: $.board});
LocalizacionRowController.on('recargar', function(e){
Ti.API.debug("--- Recargar");
});
var table = Ti.UI.createTableView({
id: ('table' + i),
data: tableData,
separatorStyle: OS_ANDROID ? Ti.UI.TABLE_VIEW_SEPARATOR_STYLE_NONE : Ti.UI.iPhone.TableViewSeparatorStyle.NONE,
headerView: LocalizacionRowController.getView()
});
答案 1 :(得分:-1)
你必须在控制器中不在视图中触发事件,试试这个:
var controller = Alloy.createController("Principal/Componentes/LocalizacionRow", {parent: $.board});
var table = Ti.UI.createTableView({
id: ('table' + i),
data: tableData,
separatorStyle: OS_ANDROID ?,
headerController : controller,
headerView: controller.getView();
});
var header = table.headerController;
header.on('recargar', function(e){
Ti.API.debug("--- Recargar");
});