Added automagic filtering capability to the app controller. Also, lumped all items needing serialization into a single 'post' item, instead of continuing to piecemeal each added post item. There will be some changes required to some controllers, since custom post data has changed location, but it should be minor. To make use of the new filtering methods, each view will have to set the 'filter' parameter at the time of grid setup.
git-svn-id: file:///svn-source/pmgr/branches/yafr_20090716@365 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
@@ -69,36 +69,30 @@ $url = $html->url(array('controller' => $controller,
|
||||
// Create extra parameters that jqGrid will pass to our
|
||||
// controller whenever data is requested.
|
||||
// 'fields' will allow the controller to return only the
|
||||
// requested fields, and in the right order. Since fields
|
||||
// is a complex structure (an array), we'll need to
|
||||
// serialize it first for transport over HTTP.
|
||||
// requested fields, and in the right order.
|
||||
$postData = array();
|
||||
$postData['fields'] = serialize(array_map(create_function('$col',
|
||||
'return $col["index"];'),
|
||||
array_values($jqGridColumns)));
|
||||
$postData['fields'] = array_map(create_function('$col',
|
||||
'return $col["index"];'),
|
||||
array_values($jqGridColumns));
|
||||
|
||||
// Determine if we're to be using a custom list, or if
|
||||
// the data will simply be action based.
|
||||
if (isset($custom_ids)) {
|
||||
if (!isset($action))
|
||||
$action = 'idlist';
|
||||
$postData['idlist'] = serialize($custom_ids);
|
||||
}
|
||||
elseif (!isset($action)) {
|
||||
$action = null;
|
||||
$postData['idlist'] = $custom_ids;
|
||||
}
|
||||
|
||||
if (isset($custom_post_data)) {
|
||||
$postData['custom'] = serialize($custom_post_data);
|
||||
}
|
||||
|
||||
// 'action' will ensure that the controller provides the
|
||||
// correct subset of data
|
||||
$postData['action'] = $action;
|
||||
|
||||
if (isset($nolinks)) {
|
||||
if (isset($nolinks))
|
||||
$postData['nolinks'] = true;
|
||||
}
|
||||
|
||||
// 'action' will ensure that the controller does the right thing
|
||||
// 'filter' allows the app controller to automagic filter
|
||||
// 'custom' is for use solely by derived controllers
|
||||
$postData['action'] = isset($action) ? $action : null;
|
||||
$postData['filter'] = isset($filter) ? $filter : null;
|
||||
$postData['custom'] = isset($custom_post_data) ? $custom_post_data : null;
|
||||
|
||||
|
||||
// Perform column customizations.
|
||||
// This will largely be based off of the 'formatter' parameter,
|
||||
@@ -196,7 +190,9 @@ $jqGrid_setup = array_merge
|
||||
(array('mtype' => 'GET',
|
||||
'datatype' => 'xml',
|
||||
'url' => $url,
|
||||
'postData' => $postData,
|
||||
// Since postData is a complex structure (an array), we'll
|
||||
// need to serialize it first for transport over HTTP.
|
||||
'postData' => array('post' => serialize($postData)),
|
||||
'colNames' => array_keys($jqGridColumns),
|
||||
'colModel' => array('--special' => $jqGridColumns),
|
||||
'height' => $height,
|
||||
|
||||
Reference in New Issue
Block a user