问题描述
RT,急求,谢谢!!!
解决方案
解决方案二:
formatte:function(value,rowDate,rowIndex){return"返回你想要格式化的东西";}
解决方案三:
在绑定设置部分设置你对应的format啊……
解决方案四:
你在javascript版问过了这里也发了贴啊?好吧再贴一遍,正好那边多写了几句没用的代码<tableclass="easyui-datagrid"title="文档列表"id="dg"pagination="true"style="height:98%"><thead><tr><thdata-options="field:'wordname',width:180,halign:'center'">文档名称</th><thdata-options="field:'wordtype',width:100,halign:'center',align:'center'">文档类型</th><thdata-options="field:'createtime',width:150,halign:'center',align:'center'">上传时间</th><thdata-options="field:'createby',width:180,halign:'center',align:'center'">上传用户</th><thfield="opt"formatter='optFormater'width="150"halign="center"align="center">操作</th></tr></thead></table>
//DataGrid操作栏functionoptFormater(value,row,index){varwordId=row.id;varwordurl=row.wordurl;varwordname=row.wordname;vardel='<ahref="WordList!deleteData.action?wordname='+encodeURI(encodeURI(wordname))+'&id='+wordId+'&url='+wordurl+'"onclick="returnconfirm('+"'确定删除?'"+');">删除</a>|';varpreview='<ahref="documentView.jsp?url='+wordurl+'"target="_bank">预览</a>';returndel+preview;}