1

我在使用 CFGRID 和 JQuery 时遇到问题。以下是使用 CFARTGALLERY 数据库的示例代码:

网格测试.cfm

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <cfajaximport tags="cfform,cfgrid">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>CFGRID Test</title>
    </head>
    <cfinvoke component="gridtest" method="getartistname" returnvariable="artistname" />
    <body>
        <cfform name="frmArtists" format="html">
                <cfselect name="selArtist" query="artistname" queryPosition="below" display="lastname" value="artistid">
                    <option value="0">Select artist...</option>
                </cfselect>
                <p></p>
                <cfgrid name="artgrid"
                            bind="cfc:gridtest.getartname({cfgridpage},
                                                             {cfgridpagesize},
                                                             {cfgridsortcolumn},
                                                             {cfgridsortdirection},
                                                             {selArtist})"
                            format="html"
                            pagesize="8"
                            bindOnLoad="false"
                            selectmode="browse"
                            width="400">
                    <cfgridcolumn name="artname" header="Art Name" display="yes" width="400">
                </cfgrid>
        </cfform>
    </body>
    </html>

它有一个简单的 cfselect 控件来选择艺术家的名字,当点击时,cfgrid 会显示艺术作品的名字。

这是 CFC (gridtest.cfc):

<cfcomponent>
    <cfset application.datasource="cfartgallery">
    <cfset cfartgallery=#application.datasource#>

    <cffunction name="getArtistName" access="public" returntype="query">
        <cfquery name="artistname" datasource="#cfartgallery#">
                SELECT ARTISTID,LASTNAME
                FROM ARTISTS
                ORDER BY LASTNAME
        </cfquery>
        <cfreturn artistname>
    </cffunction>

    <cffunction name="getartname" access="remote" returntype="struct">
        <cfargument name="page" type="numeric" required="true">
        <cfargument name="pagesize" type="numeric" required="true">
        <cfargument name="pagesortcolumn" type="string" required="false" default="">
        <cfargument name="pagesortdir" type="string" required="false" default="">
        <cfargument name="artistid" type="numeric" required="yes">
        <cfset var artname="">
        <cfquery name="artname" datasource="#cfartgallery#">
                SELECT ARTNAME
                FROM ART
                WHERE ARTISTID=<cfqueryparam cfsqltype="cf_sql_integer" value="#arguments.artistid#">
        </cfquery>
        <cfreturn QueryConvertForGrid(artname,page,pagesize)>
    </cffunction>

</cfcomponent>

到目前为止,一切都很好。但是,如果我使用使用 JQuery 的加载功能的包装页面,就像这样(gridtestmain.cfm):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
        $('#div1').load('gridtest.cfm');
    });
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>CFGRID Test Under JQuery</title>
</head>
<body>
    <div id="div1">
    </div>
</body>
</html>

cfgrid 消失了,只有一个边界框。在 IE 中它会报告“Ext.EventObject 为空或不是对象”的错误。搜索网络表明 Ext 库被多次加载导致问题,但我看不到它被多次加载的位置。

这是 JQuery 的限制吗?还是我做错了?任何建议都非常感谢。

4

1 回答 1

2

我目前无法访问 CF 服务器,所以如果我错了,请大家随时纠正我。

IIRC,当您创建 CFForm 时,CF 会处理 HEAD 块以添加适当的 EXT JavaScript 文件。但是,在这种情况下,您将 cfm 作为页面部分加载,而不是整个页面,因此浏览器不会处理第二个(加载的)HEAD 块。

我会尝试几件事,看看哪个效果最好:

1)将您正在加载的 div 包装在 CFForm 中,而不是将其放在您正在远程加载的子部分中。

2) 在父页面中创建一个空白的未使用的 CFForm,以便为此加载相应的 JS。

虽然我在这里,如果我没记错的话,你不需要在你正在加载的小节中完整的页面定义(HEAD、BODY 标签等)。您只需要要显示的标记。HEAD 信息等将是来自调用页面的信息。

于 2010-08-03T12:59:48.420 回答