SP页面如下
$(document).ready(function(){
  $("#resultTable").flexigrid({
   url:'receiveticket!list.action',
   dataType:'json',
   colModel:[
    {display:'序号',name:'number',width:205,align:'center'},
    {display:'服务名称',name:'name',width:100,align:'center'},
    {display:'请求时间',name:'requestDate',width:69,align:'center'},
    {display:'地点',name:'location',width:69,align:'center'},
    {display:'联系人',name:'contact',width:69,align:'center'},
    {display:'操作',name:'operation',width:69,align:'center'}
   ],
   usepager: true,
   errormsg: '查询失败',
   pagestat: '共有{total}条记录,显示第{from}条 - 第{to}条记录',
   procmsg: '正在查询,请稍候 ...',
   nomsg: '没有符合条件的数据',
   height:385,
   width:799
  });
 });
但是不知道为什么我在action中打断点就是进不去