easyui之datagrid中点击列头弹出combox下拉框

背景:点击easyUI  datagrid列头弹出combox下拉框,实现对列内容的筛选。

实现方法

onLoadSuccess:function(data){

        typeFilt();//表头类型下拉框

}

function typeFilt(){   

        //fieldValue是你想实现的单元格的filed的值

        var title = $('.datagrid-header-row td[field="fieldValue"] span'); 

        var combobox = '' ;

        title.html(combobox);    

        $('#type').combobox({        

                panelHeight:'auto',        

                editable:false,        

                onChange:function(newValue,oldValue){            

                        console.log(newValue);        

                }    

        });

}

你可能感兴趣的:(easyui之datagrid中点击列头弹出combox下拉框)