/** This method is used to prepare ID to get the entry's id which will used in entry detail. */
 @SuppressWarnings("unchecked")
 public void prepareIDS() {
   ID_ARRAY.clear();
   for (SmartListItem row : listData) {
     ID_ARRAY.add(((ArrayList<HashMap<String, String>>) row.getValues().get(0)).get(0).get(ID));
   }
 }