| 224 | } |
| 225 | |
| 226 | void RedisDataUI::OnItemClick( TNotifyUI &msg ) |
| 227 | { |
| 228 | CDuiString name = msg.pSender->GetClass(); |
| 229 | CListTextElementUI listTextElementUI ; |
| 230 | CTreeNodeUI treeNodeUI; |
| 231 | |
| 232 | if (name == listTextElementUI.GetClass()) |
| 233 | { |
| 234 | OnItemActiveForList(msg); |
| 235 | } |
| 236 | else if (name == treeNodeUI.GetClass()) |
| 237 | { |
| 238 | OnItemActiveForTree(msg); |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | void RedisDataUI::OnItemActive( TNotifyUI &msg ) |
| 243 | { |