/**
  * Prepare table
  */
 private function _prepareTable()
 {
     $request = $this->getRequest();
     $page = $request->getParam('page');
     $recCount = $request->getParam('recCount');
     $paging = array('currentPage' => $this->defaultPageNumber, 'recordCount' => $this->defaultRecordCount);
     if (!$page && !$recCount && $this->getTableSession()) {
         $paging = $this->getPagingFilters();
     } else {
         if ($page || $recCount) {
             if ($page) {
                 $paging['currentPage'] = $page;
             }
             if ($recCount) {
                 $paging['recordCount'] = $recCount;
             }
         }
     }
     $this->collection->setCurrentPageNumber($paging['currentPage']);
     $this->collection->setItemCountPerPage($paging['recordCount']);
     $this->setPagingFilters($paging);
 }