Quantcast
Channel: Piwik Forums - Support & Bugs
Viewing all articles
Browse latest Browse all 13117

Re: problem with sort column on table

$
0
0
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();
}

Viewing all articles
Browse latest Browse all 13117

Trending Articles