Languages

Menu
Sites
Language
[Q/BUG] Activating Tizen::Ui::Controls::EditArea programatically.

Hi,

Any way to programatically activate Tizen::Ui::Controls::EditArea to full screen mode (INPUT_STYLE_FULLSCREEN)? ::SetFocus() works for Tizen::Ui::Controls::EditField (a cursor appears and the keypad pops-up), but in case of EditArea, only a colored border is shown and the control does not activate (a Tizen bug?).

Gary

Responses

2 Replies
Alex Ashirov

Hello!

I have just tried that and it seems to be ok. Probably the problem in your case is that the TextArea already has focus when you call SetFocus() method. So, you can try to move focus on other control just before call SetFocus() on the TextArea. I use v.2.2 of the SDK. Also, I can provide you test app which I used If you need.

Gary V

Alex,

I tested with Header::SetFocus() right before TextArea::SetFocus() - the same result. A blue focus border appears around TextArea, but that's all (it does not open full-screen with "Done" in its own footer).

The TextArea is a child control of a TableViewItem, perhaps that makes a difference (with TextArea::SetFocus() within IGroupedTableViewItemEventListener::OnGroupedTableViewItemStateChanged(), TABLE_VIEW_ITEM_STATUS_SELECTED).

Gary