I am developing a mobile app in titanium studio and cannot get a text field to submit natively
this is my code:
var textField1 = Ti.UI.createTextField({
borderStyle: Ti.UI.INPUT_BORDERSTYLE_ROUNDED,
color: '#336699',
width: 250, height: 60
});
textField1.addEventListener('return', function(data) {
alert('form submitted: ' + data);
});
win1.add(textField1);
I am new to titanium studio but i believe this should work. any ideas??