<th id="province" data-options="field:'province',width:100,halign:'center',title:'省份'" align="center"></th>
<th data-options="field:'city',width:100,halign:'center',title:'城市'" align="center"></th>
<th data-options="field:'area',width:100,halign:'center',title:'地区'" align="center"></th>
如何将三个列中的province,city,area拼接起来在一起显示
感觉后台拼接起来给前端传个字段更简单。。。
前端实在要这样的话试试这个行不行:
<th data-options="field:'',width:100,halign:'center',title:'合起来'" align="center" formatter="fnFoomattert"></th> function fnFoomattert(value,row,index){
value=row.province+row.city+row.area
return value;
}
谢谢,问题已经完美解决了,我还想问,如果在后台拼接的话,你有什么好的想法
@容我考虑: 不知道你后台怎么取数据的,所以不知道怎么吹
@华临天下: 哈哈哈,谢谢,很棒!
@容我考虑: 突然发现你的那个halign好像写错了,应该是align
emmm……我记得没错的话align显示field,halign显示数据
@容我考虑: 估计我没有用过。。。。
@华临天下: 嗯……总之谢谢啦
@容我考虑: 回答能给你帮助就好