Fix dot issue on TextField in Titanium - titanium

I am working on titanium application.When I have written text and press space button twice then dot is showing on Textfield and TextArea.Please suggest me how to fix it.I have attached the screen shot.

This is a feature on your phone, has nothing to do with Titanium. Go to Settings -> General -> Keyboard and turn off "." Shortcut

Related

Cannot retain keyboard in titanium textfield

I am new to Appcelerator and I am tasked with migrating Titanium code to use latest SDK and I am facing issues with keyboard. When I edit a textfield, keyboard closes for every selection whereas I would like to retain it until I press "return" or "Done" button. Ay ideas how I can do this? Appreciate any help in this regards.
Thank you.

keyboard pushes bottom elements upward

In my app when I select to give input to particular input field which positioned at top the keyboard pushes all my bottom element upward. I am using Ionic framework. In android platform it is solved by changing windowsoftinput to adjustpan from autoresize. How to solve this problem in case of ios platform.
you should be able to add the class hide-on-keyboard-open to the items you want to stay "behind the keyboard" you can read more about how this works here
it involves using the ionic keyboard plugin

Xcode 6.1.1 Toolbar Icon and Text doesn't show

In Xcode 6.1.1 the Icon and Text doesnt show. It just shows the Icons. If if right click when the the icons are showing it just gives"hide toolbar" as the option and no option to show both Icons and Text.
This is very strange. If I use Xcode 5.x it shows the Icons and Text and right click on the toolbar works properly.
Anyone else having this issue? Also the same used to happen in 6.1 also.
Go ahead and click on 'Hide Toolbar', next you right click on the tool bar again and you can select 'Icon and Text'. Now you should have both Icon and Text as shows below;
I have a problem, it seems I have to click on 'Hide Toolbar' twice for Xcode to response.

Graphics error with NSStatusItem

My application uses NSStatusItem to be visible to the user.
So I set 'Application is agent (UIElement)' to YES, which basically hides the menu bar of the application, and hides the icon from the dock.
Now, I didn't delete the menu bar, so I can still react to shortcuts like cmd+W to close the preference window, or cmd+q to quit the application. The problem is, that anytime I use such a command, the menubar get's messed up.
I've noticed that other Apps which run in the background, like Growl 2, have the same issue.
I have no idea how to fix this.
Hopefully someone of you can help me
I'm running Mountain Lion.
thanks!
HINT
It probably has something to do with the 10.8 SKD. I have never noticed this issue before in any application.
How about move the whole Window menu to be Application menu submenu and then hide it?
You will still receive shortcuts and the highlited menu will be the application menu that is by anyway there (i suppose so, how else you will open preferences window? also shortcut?).

NSTextView not responding in an app without dock icon

I have a menulet app with an NSTextView in it. I don't want the app to appear in the dock, so I wrote
<key>LSUIElement</key>
<true/>
in the Info.plist file.
But if this option is enabled, somehow an NSTextView in the menu stops responding at all.
How can I make it respond again? Maybe there are any other ways to hide the dock icon?
Thank you!
IMPORTANT UPDATE: This bug has been spotted only on Mac OS 10.6 and higher
The documentation states that keyboard events are not supported in views that are attached to a menu item (see Application Menu and Pop-up List Programming Topics).
That said, I had no problem creating a minimal sample app without Dock icon and a text view embedded in a status item's menu, so your problem is likely somewhere else. You can download my sample app here.