how 2 create selcetion list box

Login to reply to this topic.
Thu, 2005-12-15 13:26
Joined: 2005-12-14
Forum posts: 16
iam trying 2 create a selection list box  on which item is selected by clicking on the item in the selection box . itried but failed following code iam sending.




  RESOURCE AVKON_SETTING_PAGE r_metlife10_opts
    {   
        type =  EAknCtPopupSettingList;
    }

  RESOURCE AVKON_POPUP_SETTING_TEXTS r_my_popup_setting_texts
    {
   setting_texts_resource = r_dlg_settings_search_order_texts;
   popped_up_texts_resource = r_dlg_settings_search_order_texts_popped_up;
    }

    RESOURCE LISTBOX r_dlg_settings_search_order_texts
    {
     array_id = r_dlg_settings_search_order_texts_popped_up;
     flags = EAknListBoxSelectionList;
      }
     RESOURCE ARRAY r_dlg_settings_search_order_texts_popped_up
      {
   items = {
      LBUF { txt = "type 1"; },
      LBUF { txt = "type 2"; },
      LBUF { txt = "type 3"; },
      LBUF { txt = "type 4"; },
      LBUF { txt = "type 5"; },
      LBUF { txt = "type 6"; }
     };
  }

Kishore

  • Login to reply to this topic.