本文介绍了Yii CGridView 仅隐藏过滤器输入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用 CGridView 时,过滤器输入字段由组件自动生成.
When using CGridView, the filter input fields are automatically generated by the component.
我想选择哪些列将显示输入字段.例如:我的模型有 5 列.我希望 CGridView 仅显示第 1 列和第 2 列的输入过滤器.
I want to select which columns will show the input field. For example:My model has 5 columns. I want CGridView to show the input filter ONLY for columns 1 and 2.
有没有不使用 CSS 或 jQuery 的方法,只需在 CGridView 选项上添加一些代码?
Is there a way to do it without using CSS or jQuery, just adding some code on the CGridView options?
推荐答案
array(
'name'=>'col3',
'value'=>'$data->col3',
'filter'=>false,
)
应该可以.
这篇关于Yii CGridView 仅隐藏过滤器输入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!