How to mark list box item?

Login to reply to this topic.
Mon, 2007-09-17 04:19
Joined: 2007-08-11
Forum posts: 8

I want press Ok key then mark listbox item.
yes,I got it.

void CPIVAContainer2::HandleListBoxEventL(CEikListBox* aListBox, TListBoxEvent aListBoxEvent){
        // if the Select Key has been pressed
        if (aListBoxEvent == MEikListBoxObserver::EEventEnterKeyPressed)
                {
                        AknSelectionService::HandleMarkableListProcessCommandL(EAknUnmarkAll,iplistbox);
                        AknSelectionService::HandleMarkableListProcessCommandL(EAknCmdMark,iplistbox);
                }
}

I press ok key,item hase been marked,but when I press ok key again.menu aways pop-up.and I cann't capture Ok key.

How can I do? please help me!

thanks.


Mon, 2007-09-17 09:04
Joined: 2006-10-05
Forum posts: 80
Re: How to mark list box item?

hi,

Are you providing any Menu options to mark/unmark the List Box items, or directly on the press of Ok key you want Mark/Unmark?

Tue, 2007-09-18 02:52
Joined: 2007-08-11
Forum posts: 8
Re: How to mark list box item?

Hi jp4symbian,

How to?

I just known this method.Can you help me?I am a newbie.thanks

Tue, 2007-09-18 07:47
Joined: 2006-10-05
Forum posts: 80
Re: How to mark list box item?

hi fanglulu,

Do you know the basics of List Box? If not, i think you should study the "ListBox" example given in SDK.
Some other good links for List boxes are:

http://www.newlc.com/article.php3?id_article=136 (This is a complete tutorial on List box having many parts. Just go on navigating
to further links given at the end of each page)

In the above tutorial, Part VIII is for markable lists. You can directly view the link at :
http://www.newlc.com/article.php3?id_article=240

Please study it carefully. I am sure its gonna be helpful. Smiling

Tue, 2007-09-18 08:18
Joined: 2007-08-11
Forum posts: 8
Re: How to mark list box item?

Hi jp4symbian,

Thank you for your help.

I will try.

thanks.

Tue, 2007-09-18 08:26
Joined: 2006-10-05
Forum posts: 80
Re: How to mark list box item?


Do get back to this post if you have any further doubts. Smiling

Wed, 2008-02-20 10:49
Joined: 2007-10-26
Forum posts: 36
Re: How to mark list box item?

iam working on the same task, can u send me the complete code

  • Login to reply to this topic.