formatter是格式化的意思,也就是以何种形式呈现的意思。项目中需要在easyui-datagrid的某一列做成超链接的效果,点击并能够出现一个弹出框;
formatter该属性是一个函数,它包含两个参数: value: 对应字段的当前列的值,record: 当前行的记录数据。
页面代码:
<span style="font-family:SimSun;font-size:18px;"><table id="dg" class="easyui-datagrid" style="width: 1000px" data-options=" rownumbers:true,striped:true,loadMsg:'正在加载用户信息',singleSelect:true,method:'get',pagination:true,url:'/CadresRate/queryAllDocument',pageSize:20,pageList:[10,20,30,40,50],pageNumber:1,toolbar:toolbar"> <thead> <tr style="width: 100%"> <th data-options="field:'DocumentName',width:180 ,<strong>formatter:FileUrl</strong>">文件名称</th> </tr> </thead> </table>
JS代码:
<span style="font-family:SimSun;font-size:18px;"><script type="text/javascript"> function FileUrl(value, rowData) { if (value == null || value == "") { return "<a href='javascript:void(0)'onclick=showImg('" + value + "');><a/>"; } else { return "<a href='javascript:void(0)'onclick=showImg('" + value + "');>" + value + "<a/>"; } } </script>
注意事项
formatter函数不会作用在列属性checkbox为true的单元格上,checkbox列是组件预留的
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/14030.html