Flexigrid içinde Checkbox sütun eklemek

2 Cevap php

The issue about jquery flexigrid using php. unfortunately http://flexigrid.info site is down very often so managed to take some sample code from http://sanderkorvemaker.nl/test/flexigrid/ and worked based on that.

Yukarıdaki örnek kod ben bu onay kutularını bir çift tıklatın ve sil düğmesine tıklayın bu onay kutularını kontrol edilir olduğu tüm id almalısınız ve bir silme sorgusu oluşturabilirsiniz Yani şimdi ben, onay kutuları ile bir sütun ile bir ızgara oluşturmak için gereken işleri ve yürütmek.

Herkes bana bir örnek verebilir misin lütfen

Şimdiden teşekkürler

2 Cevap

i Flexigrid satırlar seletable çünkü artık onay gerekmez düşünüyorum.

however if your really want to go on with that idea.... in your php file which processes the grid data on json you can just add the checkbox at the cell with an id on it i.e

while(true){
        $json .= ",";
        $json .= "\n{";
        $json .= "id:'".$id."',";
        $json .= "cell:['".$col1."',";
        $json .= "'".$col2."',";
        $json .= "'<input id=\"dataid".$id."\" class="datacb" type=\"checkbox\" value=\"".$id.""\/>'";
        $json .= "]\n";
        $json .= "}";
}

silme fonksiyonu altında javascript dosyasında

    var ids;
$('.datacb').each(function(){ if($(this).is(':checked')){
  ids += $(this).val()+",";   } });

/*send ids to php for processessing */

eklemek "showCheckbox: true" seçenekleri onay kutusunu eklemek için