Hi All,
I am working on a mobile application using titanium sdk 3.2.0 for iphone right now but in future same will be tried on android as well. I am using mac OS for development.
Well the issue is that i have used keyboardType -- Titanium.UI.KEYBOARD_NUMBER_PAD. and there is no return button on this type of pad. so unable to hide it.
I tried the other way around. I tried it using event call for the view on which textfield is used i.e. $.user.blur() user is textField id. But the problem is that when i click on textfield, it runs the event of view. that means blur fucntion is called when i click on textField which is unwanted. Does anyone has solution for this? Please let me know. I guess this is a bug for appcelerator and should be solved.
Btw one more observation, when TextArea is used instead of textField, same code work fine. that means event of view is not called when clicked. But it is not ideal to use TextArea instead of TextField i suppose.