Hi!
I realised multi-page dialog inherited from AknDialog.
It works well - thanks a lot to Alexander (AEK_NOKIA).
Menu was created programmaticaly by AddMenuItemL
My problem is:
when i select menu-item by Up and Down of navigation button, selected item change with step 2 (0, 2,... ).
MB somebody knows what the reason.
Thanks at advance
Arcady
I solved this problem:
In OfferKeyEventL of my dialog class
instead of
...
if (MenuShowing())
{
iMenuPane->OfferKeyEventL(aKeyEvent, aType);
return EKeyWasNotConsumed;
}
...
have to use
...
if (MenuShowing())
{
return EKeyWasNotConsumed;
}
...
Good luck
Arcady