/**
  * Busca o titulo do item selecionado
  * 
  * @name get_selected_title() 
  */
 public function get_selected_title()
 {
     // Busca os paths
     $path = parent::get_selected_items();
     // Verifica se existe algum selecionado
     if (sizeof($path) <= 0) {
         return FALSE;
     }
     // Busca o iter
     $iter = $this->model[$path[0][0]]->iter;
     // Retorna o titulo
     return $this->model->get_value($iter, 1);
 }