I looked my response and DIV (like <div class="dataTableActionsWrapper">) is absent. Maybe you know any exampe, how to get sorted data via ajax.
I'm using this code:
function pageReport()
{
$view = Piwik_View::factory('index');
$view->profilesHeader = Piwik_Translate('tmpProfilesAdm_SubMenuNameIntent');
$objPageTable = Piwik_ViewDataTable::factory('table');
$objPageTable->init($this->pluginName, __FUNCTION__, "tmpProfiles.getReport");
$objPageTable->setSortedColumn('ID', 'asc');
$objPageTable->setLimit(200);
$objPageTable->disableShowAllColumns();
$objPageTable->disableExcludeLowPopulation();
$objPageTable->disableSearchBox();
$view->profilesTable = $this->renderView($objPageTable, true);
echo $view->render();
}
I'm using this code:
function pageReport()
{
$view = Piwik_View::factory('index');
$view->profilesHeader = Piwik_Translate('tmpProfilesAdm_SubMenuNameIntent');
$objPageTable = Piwik_ViewDataTable::factory('table');
$objPageTable->init($this->pluginName, __FUNCTION__, "tmpProfiles.getReport");
$objPageTable->setSortedColumn('ID', 'asc');
$objPageTable->setLimit(200);
$objPageTable->disableShowAllColumns();
$objPageTable->disableExcludeLowPopulation();
$objPageTable->disableSearchBox();
$view->profilesTable = $this->renderView($objPageTable, true);
echo $view->render();
}