- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有2个问题...
我有3张 table 。 tbl_target_cities、lib_cities 和 lib_provinces。
通过遵循视频教程,我能够将数据从 tbl_target_cities 显示到 gridview 并将其连接到 lib_cities。
除了来自关系的 CITY/MUNICIPALITY 列之外,gridview 中的排序工作完美。
问题一:如何更正 CITY/MUNICIPALITY 列的排序?
问题2:如何添加带有搜索框和功能排序功能的省份列?
tbl_target_cities
+-------------------+-----------------------+
| Field | Type |
+-------------------+-----------------------+
| id | int(11) |
| city_code | varchar(20) |
| kc_classification | varchar(100) |
| cluster | enum('1','2','3','4') |
| grouping | int(11) |
| priority | varchar(100) |
| launch_year | int(11) |
+-------------------+-----------------------+
+---------------+--------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+---------------+--------------+------+-----+---------+-------+
| city_code | char(9) | NO | PRI | | |
| city_name | varchar(100) | NO | MUL | NULL | |
| prov_code | char(9) | NO | MUL | NULL | |
| is_Urban | tinyint(1) | YES | | 0 | |
| locked | tinyint(1) | YES | | 0 | |
| app_target_hh | int(5) | YES | | NULL | |
| 4p_areas | tinyint(1) | NO | | NULL | |
+---------------+--------------+------+-----+---------+-------+
+-------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+-------------+------+-----+---------+-------+
| prov_code | char(9) | NO | PRI | | |
| prov_name | varchar(60) | NO | MUL | NULL | |
| region_code | char(9) | NO | MUL | NULL | |
+-------------+-------------+------+-----+---------+-------+
<?php
namespace backend\models;
use Yii;
/**
* This is the model class for table "tbl_target_cities".
*
* @property integer $id
* @property string $city_code
* @property string $kc_classification
* @property string $cluster
* @property integer $grouping
* @property string $priority
* @property integer $launch_year
*/
class TblTargetCities extends \yii\db\ActiveRecord
{
public $province;
public $region;
/**
* @inheritdoc
*/
public static function tableName()
{
return 'tbl_target_cities';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['region', 'kc_classification', 'cluster', 'grouping', 'priority', 'launch_year'], 'required'],
[['cluster','province','region'], 'string'],
[['grouping', 'launch_year'], 'integer'],
[['city_code'], 'string', 'max' => 20],
[['city_code'], 'required', 'message' => 'Please select a city or municipality.'],
[['kc_classification', 'priority'], 'string', 'max' => 100],
[['city_code'], 'unique','message'=>'City/Municipality is already covered.'],
[['province'], 'required','message'=>'You need to select province.'],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'cityName.province.prov_name'=>'Province',//son2x:from the view.php file
'id'=>'City / Municipality',//son2x:from the view.php file
'city_code' => 'City / Municipality',
'kc_classification' => 'Kc Classification',
'cluster' => 'Cluster',
'grouping' => 'Grouping',
'priority' => 'Priority',
'launch_year' => 'Launch Year',
];
}
public static function get_cities($prov_code){
$select = "SELECT * FROM lib_cities where prov_code=$prov_code";
$query = Yii::$app->db->createCommand($select)->queryAll();
return $query;
}
//the first that works
/*public function getCityName()
{
return $this->hasOne(LibCities::className(),['city_code'=>'city_code']);
}*/
public function getCityName()
{
return $this->hasOne(LibCities::className(),['city_code'=>'city_code'])->with(['province']);
}
}
<?php
namespace backend\models;
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use backend\models\TblTargetCities;
/**
* TblTargetCitiesSearch represents the model behind the search form about `backend\models\TblTargetCities`.
*/
class TblTargetCitiesSearch extends TblTargetCities
{
/**
* @inheritdoc
*/
public function rules()
{
return [
[[ 'grouping', 'launch_year'], 'integer'],
[['id','city_code', 'kc_classification', 'cluster', 'priority'], 'safe'],
];
}
/**
* @inheritdoc
*/
public function scenarios()
{
// bypass scenarios() implementation in the parent class
return Model::scenarios();
}
/**
* Creates data provider instance with search query applied
*
* @param array $params
*
* @return ActiveDataProvider
*/
public function search($params)
{
$query = TblTargetCities::find();
$dataProvider = new ActiveDataProvider([
'query' => $query,
]);
$this->load($params);
if (!$this->validate()) {
// uncomment the following line if you do not want to any records when validation fails
// $query->where('0=1');
return $dataProvider;
}
$query->joinWith('cityName');
$query->andFilterWhere([
'id' => $this->id,
'grouping' => $this->grouping,
'launch_year' => $this->launch_year,
]);
/* $query->andFilterWhere(['like', 'city_code', $this->city_code])
->andFilterWhere(['like', 'kc_classification', $this->kc_classification])
->andFilterWhere(['like', 'cluster', $this->cluster])
->andFilterWhere(['like', 'priority', $this->priority]); */
$query->andFilterWhere(['like', 'kc_classification', $this->kc_classification])
->andFilterWhere(['like', 'cluster', $this->cluster])
->andFilterWhere(['like', 'priority', $this->priority])
->andFilterWhere(['like', 'lib_cities.city_name', $this->city_code]);
return $dataProvider;
}
}
<?php
namespace backend\models;
use Yii;
/**
* This is the model class for table "lib_cities".
*
* @property string $city_code
* @property string $city_name
* @property string $prov_code
* @property integer $is_Urban
* @property integer $locked
* @property integer $app_target_hh
* @property integer $4p_areas
*/
class LibCities extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'lib_cities';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['city_code', 'city_name', 'prov_code', '4p_areas'], 'required'],
[['is_Urban', 'locked', 'app_target_hh', '4p_areas'], 'integer'],
[['city_code', 'prov_code'], 'string', 'max' => 9],
[['city_name'], 'string', 'max' => 100]
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'city_code' => 'City Code',
'city_name' => 'City Name',
'prov_code' => 'Prov Code',
'is_Urban' => 'Is Urban',
'locked' => 'Locked',
'app_target_hh' => 'App Target Hh',
'4p_areas' => '4p Areas',
];
}
public function getProvince()
{
return $this->hasOne(LibProvinces::className(),['prov_code'=>'prov_code']);
}
}
<?php
namespace backend\models;
use Yii;
/**
* This is the model class for table "lib_provinces".
*
* @property string $prov_code
* @property string $prov_name
* @property string $region_code
*/
class LibProvinces extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return 'lib_provinces';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['prov_code', 'prov_name', 'region_code'], 'required'],
[['prov_code', 'region_code'], 'string', 'max' => 9],
[['prov_name'], 'string', 'max' => 60]
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'prov_code' => 'Prov Code',
'prov_name' => 'Prov Name',
'region_code' => 'Region Code',
];
}
}
<?php
use yii\helpers\Html;
use yii\grid\GridView;
/* @var $this yii\web\View */
/* @var $searchModel backend\models\TblTargetCitiesSearch */
/* @var $dataProvider yii\data\ActiveDataProvider */
$this->title = 'Coverage';
$this->params['breadcrumbs'][] = $this->title;
?>
<div class="tbl-target-cities-index">
<h1><?= Html::encode($this->title) ?></h1>
<?php // echo $this->render('_search', ['model' => $searchModel]); ?>
<p>
<?= Html::a('Add new City/Municipality', ['create'], ['class' => 'btn btn-success']) ?>
</p>
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
[
'attribute'=>'city_code',
'value'=>'cityName.city_name',
//'contentOptions'=>['style'=>'width: 120px;']
],
[
'attribute'=>'kc_classification',
//'contentOptions'=>['style'=>'width: 120px;']
],
[
'attribute'=>'cluster',
//'contentOptions'=>['style'=>'max-width: 100px;']
],
'grouping',
'priority',
'launch_year',
['class' => 'yii\grid\ActionColumn',
'contentOptions'=>['style'=>'width: 70px;']],
],
]); ?>
</div>
最佳答案
我通过更改 search
来计算排序方法如下...
public function search($params)
{
$query = TblTargetCities::find();
$query->joinWith('cityName');
$dataProvider = new ActiveDataProvider([
'query' => $query,
]);
$dataProvider->sort->attributes['city'] = [
// The tables are the ones our relation are configured to
// in my case they are prefixed with "tbl_"
'asc' => ['lib_Cities.city_name' => SORT_ASC],
'desc' => ['lib_Cities.city_name' => SORT_DESC],
];
$this->load($params);
if (!$this->validate()) {
// uncomment the following line if you do not want to any records when validation fails
// $query->where('0=1');
return $dataProvider;
}
$query->andFilterWhere([
'id' => $this->id,
'grouping' => $this->grouping,
'launch_year' => $this->launch_year,
]);
/* $query->andFilterWhere(['like', 'city_code', $this->city_code])
->andFilterWhere(['like', 'kc_classification', $this->kc_classification])
->andFilterWhere(['like', 'cluster', $this->cluster])
->andFilterWhere(['like', 'priority', $this->priority]); */
$query->andFilterWhere(['like', 'kc_classification', $this->kc_classification])
->andFilterWhere(['like', 'cluster', $this->cluster])
->andFilterWhere(['like', 'priority', $this->priority])
->andFilterWhere(['like', 'lib_cities.city_name', $this->city_code]);
return $dataProvider;
}
关于yii2从gridview中的关系和排序在gridview中添加列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29529190/
我有一个需要以编程方式作为列(而不是行)绑定(bind)到 gridview 的值列表。例如,如果我的 DAL 返回 10 个值,我需要将这 10 个值显示为 gridview 中的列作为标题文本,并
我有一个使用 out-gridview 显示结果的脚本.这是一个简单的例子: "hello world" | out-gridview 当我使用 Run with PowerShell 运行脚本时,它
我正在尝试使用工作正常的 Kartik 导出小部件,除了它没有在扩展“函数/网格”中获取数据。现在我当然明白它是如何工作的,它实际上并没有显示任何东西,只是呈现另一个 View 。但我不知道如何在导出
在 Android 教程中,GridView tutorial准确的说是有一行代码 GridView gridview = (GridView) findViewById(R.id.gridview)
我正在尝试为与我的 gridview 关联的每一列添加一个标题,这样当页面足够宽以显示多行项目时,列标题应该显示在每一列的顶部,如果页面缩小,以至于该列不再适合。 最终结果看起来像这样: 2 colu
在我使用 comboBox 而不是 default(textBox) 在 gridview 中使用这个搜索之前: [ 'attribute' => 'project_status',
我想在列中显示我的交易表中一个/所有帐户的总余额。余额列应显示添加上一行总余额的余额。 我的网格 View 代码是 'yii\grid\SerialColumn'],
我正在使用 gridview 列出我的所有数据。我的 table 看起来像这样。 $dataProvider, 'columns' => [ 'firstName',
我目前正在构建一个 Windows 8 XAML C# 应用程序。在一个页面中,我有一个用于水平滑动和滚动的滚动查看器。我有几个控件可以很好地与 scorllviewer 配合使用。但是当您滚动并且光
当调整 GridView 的大小时,它的元素被重新排列,该元素的动画似乎不起作用。 在这里你可以找到一个简单的例子:http://pastebin.com/BgST6sCv 如果单击示例中的其中一个方
如何动态更改 gridview 模板列顺序? 最佳答案 迭代 通通栏目 的网格 View 对象和 店铺 他们在 收藏 . List columns = new List(); foreach (Dat
我在 Yii2 中使用了 CRUD 生成器,它为我的 actionIndex 生成了以下代码 Controller ... public function actionIndex() { $s
在我的用户模型中我有一个函数: public function getRole() { if ($this->role == self::ROLE_USER) { return
我正在构建一个带有 Yii2 框架的 webapp,它将为用户(登录)提供下载管理员预先上传文件的能力。 我已经创建了操作 actionDownload在调用 sendFile() 的特定 Contr
我想在 GridView 中订购图像。我已经使用列表框并成功将图像添加到其中。它的显示如下 但我希望这些图像显示在 GridView 中。可能与否。 请帮助我......提前致谢 最佳答案 出于此类目
我试图通过在 QtQuick 2.0 (Qt 5) 中动态填充 ListModel 来填充 GridView。它可以工作,但应用程序启动速度非常慢: 应用程序窗口立即出现,但大约需要 2 秒才会出现浅
我在 Yii2 GridView 小部件中显示一些列,“执行人员名称”是其中之一,但它应该仅在主管登录时显示,而不是在执行人员登录时显示。 当我将可见值硬编码为零时,它不会显示如下: [ 'l
我想用 HTML 制作一个表格。所以我从数据库中获取了一些数据。 每个项目都是一个用户。用户有用户名、名字、姓氏和电子邮件。我想制作一个表格来列出这些用户。 每个用户都必须换行。我已经在互联网上搜索过
我想在 pjax 处于事件状态的排序 gridview 之后运行脚本。重新加载 gridview 后我找不到任何事件处理程序。 pjax调用和gridview刷新后有没有正确的事件处理方法? 最佳答案
在 WinRT 上,我有一个 GridView 。我想在到达 gridview 的末尾时执行一个方法。 但是,没有像 GridView 那样的事件方法。 我尝试检测对 gridview 的操纵,但似乎
我是一名优秀的程序员,十分优秀!