Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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??

share|improve this question

1 Answer

return is fired only when return button is pressed. so i think you can get the values whenever textbox has lost focus.

you can get value by :

textField1.addEventListener('blur',function(data){
    alert(data.source.value);
});

more details can be found using alert(JSON.stringify(data));

But this will not be fired for 'return' listener. so you can also include same code for 'return' too.

textField1.addEventListener('return',function(data){
    alert(data.source.value);
    alert(JSON.stringify(data));
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.