Filtering a collection in Titanium Alloy
问题 From one controller (Convos) I fire up a Messages controller. I pass in an id, and am trying to use that id to filter which Messages are bound to the new view. For some reason, the filtering is not working, and all Message records are being shown. Here's the code in my Messages controller. Data structure for the Messages model message_id: "integer", convo_id: "integer", created: "text", author: "text", body: "text", Convos.js var messages = Alloy.createController('messages', { convoId: e