jQuery MiniUI

 找回密码
 立即注册
查看: 2228|回复: 1
打印 上一主题 下一主题

求助!!! [复制链接]

Rank: 3Rank: 3

跳转到指定楼层
楼主
发表于 2013-5-18 13:55:00 |只看该作者 |倒序浏览
我的datagrid 在url处填了地址,需要参数的
<div id="pro_grid1" class="mini-datagrid" style="width:123px;height:140px;"url="<%=basePath%>model/modelgetModelPropertyByModelClassId.action"
>
                                                <div property="columns">
                                                        <div field="propertyname" width="32%" headerAlign="center">选择属性</div>
                                                        <div field="datatype" width="32%" headerAlign="center">数据类型</div>
                                                        <div field="length"width="32%"  headerAlign="center">长度</div>
                                                </div>
                                            </div>

在scrip中我用下面方法,其中data.ModelClassId是可以取到的。
              $.ajax({
                   url: "<%=basePath%>model/modelgetModelPropertyByModelClassId.action?modelClassId=" + data.ModelClassId,
                   cache: false,
                   success: function (text) {



                 }
});
这样在表格中取不到数据,为什么?那么应该在success: function (text) {中怎么写才能得到数据!!!
谢谢大侠们帮助

Rank: 9Rank: 9Rank: 9

沙发
发表于 2013-5-18 22:04:41 |只看该作者
用gird加载数据,你不应该自己写ajax。
grid.load({
   modelClassId: 'aaa'
});
这样可以传递任意参数

Archiver|普加软件

GMT+8, 2024-11-27 07:41 , Processed in 1.060300 second(s), 10 queries .

Powered by Discuz! X2

© 2001-2011 Comsenz Inc.

回顶部