<%@ page language="java" import="java.util.*"  pageEncoding="utf-8"%><%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>测试FlexiGrid</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">    
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<link rel="stylesheet" type="text/css" href="css/flexigrid.css">
<script type="text/javascript" src="js/jquery.flexigrid.js"></script>
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script> 
<script type="text/javascript">
$(document).ready(function(){
var grid = $("#flex1").flexigrid({
url: '../testGrid/grid_getInitGridData.action',
dataType: 'json',
colModel : [
{display: '编号', name : 'id', width : 50, sortable : true, align: 'center'},
{display: '名称', name : 'name', width : 150, sortable : false, align: 'center'}
,
sortname: "id",
sortorder: "desc",
usepager: true,
useRp: true,
rp: 10,
showTableToggleBtn:true,
width: 760,
height: 280
});
});
</script> 
  </head>
  
  <body style="overflow-y:hidden">
      <div id="ptable" style="margin:10px">
<table id="flex1" style="display:none"></table>
  </div>  
  </body>
</html>
]提示对象没有该对象或属性?是版本有问题??