91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用Yii怎么對復選框進行批量操作

發布時間:2021-02-13 13:25:00 來源:億速云 閱讀:168 作者:Leah 欄目:開發技術

利用Yii怎么對復選框進行批量操作?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

在視圖下

<?php $this->widget('zii.widgets.grid.CGridView', array(
 'id'=>'user-grid',
 'dataProvider'=>$model->search(),//Model里需要有個search()方法,$model是Controller中傳遞的Model對象
// /'filter'=>$model,
 'columns'=>array(
    array(
      'selectableRows' => 2,
      'class' => 'CCheckBoxColumn',
      'headerHtmlOptions' => array('width'=>'18px','align'=>'center'),
      'checkBoxHtmlOptions' => array('name' => 'ids[]','align'=>'center'),
    ),
'homework_numberID',
'type',
'target',
'state',

'author_id',
    array('name'=>'state','type'=>'raw','value'=>'($data->state =="not_read" ?"未讀":"已審核")'),
    // array('name'=>'passRecord','type'=>'date'),
    array('name'=>'submit_time','type'=>'date'),
 array(
   'class'=>'CButtonColumn',
 ),
 ),
)); ?>
<select name="status" id="status">
  <option value="1">通過</option>
  <option value="0">不通過</option>
</select>
<button type="button" onclick="setStatus();" >設置狀態</button>
<script type="text/javascript">
  function getData(){
    var data=new Array();
    $("input:checkbox[name='ids[]']").each(function (){
      if($(this).attr("checked")){
        data.push($(this).val());
      }
    });

    return data;
  }
  function setStatus(){
    var data = getData();
    if(data.length < 1) {
      alert('請至少選擇一個項目。');
      return ;
    }
 //這里是傳遞的url post方法
    $.post("index.php?r=user/status",{'ids[]':data,'status':$('#status').val()}, function (data) {
      if (data=='ok') {
        alert('設置狀態成功!');
      }else{
        alert('設置狀態失敗,請重試!');
      }
      window.open('index.php?r=user/admin','mainFrame');;
    });
  }
</script>

在Model中的search()函數

public function search() 
  { 
    // @todo Please modify the following code to remove attributes that should not be searched. 

    $criteria=new CDbCriteria; 

    //$criteria->with = array('author'); //添加了和 author 的渴求式加載 
    // $this->state = "not_passed";
    $criteria->compare('state',$this->state); 


    //這里添加了一個 compare, username 是 User 表的字段,$this->name 是我們添加的屬性,true 為模糊搜索 
    //$criteria->compare('username',$this->name,true); 

    return new CActiveDataProvider($this, array( 
     'criteria'=>$criteria, 
    ));

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

yii
AI

麻江县| 天台县| 樟树市| 隆化县| 玉田县| 江阴市| 巧家县| 景泰县| 岳阳县| 土默特左旗| 潜江市| 浏阳市| 扬州市| 桓台县| 洮南市| 靖西县| 郁南县| 柞水县| 伊春市| 保定市| 曲靖市| 福建省| 武功县| 郯城县| 尚义县| 当涂县| 岐山县| 江北区| 河东区| 宁南县| 新晃| 正镶白旗| 荣成市| 沁水县| 抚远县| 崇州市| 云南省| 云阳县| 德庆县| 文昌市| 滁州市|