Example #1
0
File: index.php Project: zwq/unpei
</div>

<!-- 数据表单 -->
<div class="easyui-layout" id="model-layout" style="height:500px" >				
    <table id="dg-model" class="easyui-datagrid" style="height:500px"
         data-options="region:'center',pagination:true,
               rownumbers:true,fitColumns:true,singleSelect:true,
               url:'<?php 
echo Yii::app()->createUrl("jpdata/epcModelTemp/list");
?>
',
               method:'get',toolbar:'#tb-model'">
        <thead>
            <tr>
                <?php 
foreach (EpcModelTemp::attributeFields('list') as $field => $fieldLabel) {
    ?>
                <th width="<?php 
    echo $field == 'createTime' ? '80' : '50';
    ?>
" field="<?php 
    echo $field;
    ?>
"><?php 
    echo $fieldLabel;
    ?>
</th>    
                <?php 
}
?>
            </tr>    
Example #2
0
 /**
  * Returns the data model based on the primary key given in the GET variable.
  * If the data model is not found, an HTTP exception will be raised.
  * @param integer the ID of the model to be loaded
  */
 public function loadModel($id)
 {
     $model = EpcModelTemp::model()->findByPk($id);
     if ($model === null) {
         throw new CHttpException(404, 'The requested page does not exist.');
     }
     return $model;
 }