当前位置: 首页>>代码示例>>PHP>>正文


PHP jqGridRender::setcolproperty方法代码示例

本文整理汇总了PHP中jqGridRender::setcolproperty方法的典型用法代码示例。如果您正苦于以下问题:PHP jqGridRender::setcolproperty方法的具体用法?PHP jqGridRender::setcolproperty怎么用?PHP jqGridRender::setcolproperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在jqGridRender的用法示例。


在下文中一共展示了jqGridRender::setcolproperty方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: jqGridRender

    if ($major_id != -1) {
        $sel .= "where major_id= {$major_id}";
    } else {
        if ($dept_id != -1) {
            $sel .= "where dept_id= {$dept_id}";
        }
    }
}
$conn = new DB_Connect();
$grid = new jqGridRender($conn);
$grid->SelectCommand = $sel;
$grid->table = 'student';
$grid->setColModel();
$grid->setUrl("grid.php?dept_id={$dept_id}&major_id={$major_id}&class_id={$class_id}");
$grid->setGridOptions(array("rowList" => array(20, 50, 100, 500, 2000, 10000), 'width' => 1100, 'hoverrows' => true, 'height' => 480, "multiselect" => true, "sortname" => "s_id", "rownumbers" => true));
$grid->setcolproperty("s_id", array("hidden" => true));
$grid->setcolproperty("s_pwd", array('hidden' => true));
$grid->setcolproperty("s_name", array("label" => "姓名", "width" => '130', 'align' => 'center'));
$grid->setcolproperty("s_num", array("label" => "学号", "width" => '300', 'align' => 'center'));
$grid->setcolproperty("s_user", array("label" => '用户名', 'width' => '300', 'align' => 'center'));
$grid->setcolproperty("s_mail", array("label" => "Email", "width" => '400', 'align' => 'center'));
$grid->setcolproperty("s_date", array("label" => "生日", "width" => '200', 'align' => 'center'));
$grid->setcolproperty("s_role", array("label" => "等级", "width" => '100', 'align' => 'center'));
$grid->setcolproperty("s_phone", array("label" => "电话号码", "width" => '300', 'align' => 'center'));
$grid->setcolproperty("reg_date", array("label" => "注册时间", "width" => '250', 'align' => 'center'));
$grid->setcolproperty("last_login", array("label" => "上次登陆时间", "width" => '300', 'align' => 'center'));
$grid->setcolproperty("edu_id", array("hidden" => true, "width" => '150', 'align' => 'center'));
$grid->setcolproperty("edu_name", array("label" => "学历", "width" => '110', 'align' => 'center'));
$grid->setcolproperty("dept_name", array("label" => "学院", "width" => '400', 'align' => 'center'));
$grid->setcolproperty("major_name", array("label" => "专业", "width" => '450', 'align' => 'center'));
$grid->setcolproperty("class_name", array("label" => "班级", "width" => '300', 'align' => 'center'));
开发者ID:skydel,项目名称:universal-online-exam,代码行数:31,代码来源:grid.php


注:本文中的jqGridRender::setcolproperty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。