How to remove/disable On-Keyboard Textbox when Using UIInput NGUI?

Pawan Joshi picture Pawan Joshi · Oct 13, 2014 · Viewed 8.2k times · Source

I am using NGUI's UIInput class to accept text input from user. when i start typing in text box in mobile devices. a key board appears and it has an another textbox within it self, with "OK"/"Done" button (Like a keyboard accessory view, if we're talking about iPhone).

Can i disable that text box appearing within keyboard ? Or its not even possible and i am shooting just blanks ?

From what i could gather by search for a while is, the appearance of keyboard is handled buy Unity's "TouchScreenKeyboard" class. but according to Unity Scripting reference there is nothing which could hide the textfield inside the keyboard.

Unity Scripting reference: TouchInputKeyboard

PS:- I should still be able to put input in textbox by directly typing into them, i just want an extra textbox within the key board to be removed.

TO be more clear i have attached images explaining this

This is the screen.

enter image description here

When i start typing in one of the textbox. a keyboard appears like the following. as you can see the text box just above the keyboard is not the original one.

enter image description here

Answer

Dev_Dash picture Dev_Dash · Oct 13, 2014

Did you try checking "Hide Input Check box" in Inspector view of that UIInput Textbox ?