Customizable tables implementation, beta version done.

SVN:trunk[2130]
This commit is contained in:
Denis Flaven
2012-07-24 15:15:36 +00:00
parent 5430f52145
commit 82cf7776ca
7 changed files with 40 additions and 34 deletions

View File

@@ -317,6 +317,15 @@ class DisplayBlock
$this->AddCondition($sFilterCode, $condition);
}
}
if ($bDoSearch)
{
// Keep the table_id identifying this table if we're performing a search
$sTableId = utils::ReadParam('_table_id_', null, false, 'raw_data');
if ($sTableId != null)
{
$aExtraParams['table_id'] = $sTableId;
}
}
}
$aOrderBy = array();
if (isset($aExtraParams['order_by']))