0

所以我有一些大型项目,我正在创建一个使用 MVC 4 从 Ext.Net 1.6 迁移到 Ext.Net 2.1 的示例。这样做我偶然发现了错误,即(在使我的 web 应用程序符合我的主Page)我的 GridColumn 的渲染器引发以下错误:

Uncaught TypeError: Object function String() { [native code] } has no method 'format' 
Uncaught TypeError: Cannot call method 'removeChild' of null

渲染器位于“HeadContent”占位符中,而 GridPanel 位于“MainContent”中

渲染器函数如下所示:

<script type="text/javascript">
    var template = '<span style="color:{0};">{1}</span>';

    var listname = function (value, meta, record) {
        return String.format(template, (record.data.blockstatus == "free") ? "green" : "red", value);
    };
</script>

使用 ext.net 的一般示例页面确实可以正常工作。

有想法该怎么解决这个吗?

4

1 回答 1

2

在 Ext JS 4 中,String.format被移除并替换为Ext.String.format函数。Ext JS 文档中提供了更多信息,请参阅

http://docs.sencha.com/ext-js/4-2/#!/api/Ext.String-method-format

另请参阅#40Ext.NET 2.0 Breaking Changes 的项目,

http://examples.ext.net/#/Getting_Started/Introduction/BREAKING_CHANGES/

希望这可以帮助。

于 2013-03-26T11:05:43.793 回答