Hi,
I've created a setting list in which i list certain options in a EAknCtPopupSettingList, my problem is that in one of the options i want that the other setting items would become invisible. So can anyone please tell me how wld i do that!!
Thx
Hi,
I've created a setting list in which i list certain options in a EAknCtPopupSettingList, my problem is that in one of the options i want that the other setting items would become invisible. So can anyone please tell me how wld i do that!!
Thx
make itemlist from CAknSettingItemList
CEikSettingsListBox *iListBox = iItemList->ListBox();
CAknSettingItem *XSettingItem;
...........
............
iItemList->SettingItemArray()->AppendL(XSettingItem);
XSettingItem->setHidden(ETrue);//will be hide until made EFalse
iItemList->SettingItemArray()->AppendL(YSettingItem);
iItemList->SettingItemArray()->AppendL(ZSettingItem);
do not forget to add
itemist->SettingItemArray()->RecalculateVisibleIndicesL();
itemlist->HandleChangeInItemArrayOrVisibilityL();
itemlist->ListBox()->UpdateScrollBarsL();
befor drawing it;
Can u show me some example or some sample project to do that!!
Can somebody please show me a better way to perform this operation!!