CakePHP:Paginator在select字段中进行排序

时间:2016-07-18 11:50:32

标签: sorting cakephp pagination

我想通过从下拉列表中选择来对<tr> <th><?= $this->Paginator->sort('category_id') ?></th> <th><?= $this->Paginator->sort('subcategory_id') ?></th> <th><?= $this->Paginator->sort('product_code') ?></th> </tr> 中的内容进行排序。

可以通过

在表格元素中进行排序
<select>
  <option><?= $this->Paginator->sort('category_id') ?></option>
  <option><?= $this->Paginator->sort('subcategory_id') ?></option>
  <option><?= $this->Paginator->sort('product_code') ?></option>
</select>

但我希望有一个下拉选择列表。在从列表中选择选项时,数据将被排序。

Update-Database -ProjectName: My.Project.Data

0 个答案:

没有答案