언어 설정

Menu
Sites
Language
How to set focus on genlist items through edc file

Hi,

I am trying to set focus(my own focus) on genlist items through edc.

I have taken the code of group "elm/genlist/tree/jaded/default" from genlist.edc and created my own group.

Now in my group, added the below code to parts bg and fg1 

         description { state: "focused" 0.0;
            inherit: "default" 0.0;
            color: 255 255 0 255;
            image.normal: "bt_base1.png";
            visible: 1;
         }

Program to catch focus signal

      program { name: "focused";
         source: "elm";
         signal: "elm,action,focus";
         action: STATE_SET "focused" 0.0;
         target: "fg1";
         target: "bg";
      }

Tried with target fg1 and bg seperately also but the focus which I am trying to set is not getting set.

Does anyone have any clue, where I went wrong?

 

 

Responses

3 댓글
Jinsol Park

Hi,

 

Can you test with the "elm,action,focus_highlight,show"  signal instead of the "elm,action,focus" signal ?

 

And, What is your development Tizen profile?( example : tizen 2.3 mobile or etc...)

Because different focus genlist works according to the profile/version.

Nikhil Kumar

Hi,

I tried with "elm,action,focus_highlight,show" signal, but again unsuccessful.

I am using 2.2 for TV and can't upgrade.

Regards,

NIkhil

Jinsol Park

As far as I know "2.2 TV" profile, the EFL was not open.

Is "2.2 TV profile" really right that you are developing?