我正在尝试在网格中扩展行时加载部分视图。我的听众看起来像这样:
x.RowExpander()
.Listeners(ls =>
{
ls.Expand.Handler = string.Format("Item.onListRowExpand('{0}', {1}, this);",
Url.Action("ItemDetail", "My"), Model);
})
这将调用JavaScript函数:
onListRowExpand: function(url, listId, expander) {
var container = App.DashboardPanel;
var itemId = expander.componentsCache[0].cmp.record.data.Id;
var panelId = "Details_" + listId + "_" + itemId;
// Check if the selected panel was selected again. If it was do nothing
var panel = container.getComponent(panelId);
if (!panel) {
// Remove the opened panel so we can add a new one
if (container.items.getCount() > 1) {
container.remove(container.items.getAt(1).id);
}
// Add the new panel...
container.add({
id: panelId,
closeable: true,
loader: {
xtype: "panel",
url: url,
renderer: "frame",
params: {
"listId": listId,
"itemId": itemId }
}
});
container.update();
}
}
此方法然后调用控制器:
public Ext.Net.MVC.PartialViewResult ItemDetail(int listId, int itemId)
{
var result = new Ext.Net.MVC.PartialViewResult
{
RenderMode = RenderMode.AddTo,
ContainerId = "MyPanel",
WrapByScriptTag = false,
Model = new ItemViewModel
{
ListId = listId,
ItemId = itemId
}
};
return result;
}
应该返回要添加到容器Items
上的部分视图:
@(x.Container()
.ID("MyPanel")
.Layout(LayoutType.HBox)
.Loader(x.ComponentLoader()
.Url(Url.Action("ViewList", "My"))
.Mode(LoadMode.Script)
.Params(new { listId = Model.ListId })))
视图如下:
@model ItemViewModel
@{
var x = Html.X();
}
@(x.Panel()
.LayoutConfig(new HBoxLayoutConfig {Align = HBoxAlign.StretchMax})
.Flex(1)
.Items(
x.Button().Text("Temp").Flex(1)))
我的问题是我似乎无法获取部分视图。如果我将WrapByScriptTag
设置为true,则返回为白框-在这种情况下,我将显示一条错误消息,指出“未捕获的ReferenceError:未定义Ext”),或者如果我将{{ 1}}为假。我知道我在某处缺少设置,但不确定是否出问题。任何帮助将不胜感激。
答案 0 :(得分:0)
对我来说,解决方案是将控制器更改为使用RenderMode.Config
,并将加载程序上的renderer
选项从"frame"
更改为"component"
。据我了解,不同之处在于frame选项告诉Ext.JS期望使用IFrame(即完全格式的HTML),而component选项用于描述Ext组件。那是问题的一半。另一半是我试图渲染该组件,以便将其添加到另一个容器的Items
字段中,但是该请求源自对add
的调用,因此这是不必要的。相反,将组件呈现为配置更有意义,因为它是局部视图。
请注意,这在Ext.NET 4.2.0中有效,但在Ext.NET 4.1.0中无效。在这种情况下,选择renderer: "script"
可以解决问题。