From 07cb1b685fd462efc056ca0202c0efbe3d6dfc50 Mon Sep 17 00:00:00 2001 From: Dmitriy Rozzuvaylo Date: Mon, 7 Sep 2015 07:48:13 +0300 Subject: [PATCH] Online-doc were updated for Using Container UI Components Change-Id: I29c64081471eada3bbbb25dcfd482d1ba610f79d Signed-off-by: Dmitriy Rozzuvaylo --- org.tizen.ui.practices/html/native/efl/containers_n.htm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/org.tizen.ui.practices/html/native/efl/containers_n.htm b/org.tizen.ui.practices/html/native/efl/containers_n.htm index a0e1fe0..596e0bd 100644 --- a/org.tizen.ui.practices/html/native/efl/containers_n.htm +++ b/org.tizen.ui.practices/html/native/efl/containers_n.htm @@ -361,8 +361,9 @@ nav = elm_naviframe_add(parent);

To add a new view to the naviframe:

Elm_Object_Item *nav_it;
 
+/* In Tizen 2.4, the back button is automatically pushed if
+   elm_naviframe_prev_btn_auto_pushed_set(nav, EINA_TRUE); is called. */
 nav_it = elm_naviframe_item_push(nav, NULL, NULL, NULL, view, NULL);
-// In Tizen 2.3, the back button is not supported in the naviframe 
 

When you push a new view to the stack, you receive an Elm_Object_Item for the view. You can use this item to modify the view.

To pop and delete the top-most view:

-- 2.7.4