2sxc项目上显示的添加按钮突然丢失。这是几天agao但现在当我登录DNN实例中的任何门户时,“+”或添加按钮丢失
如您所见,更改布局和编辑按钮就在那里。不知道为什么添加按钮消失了。
对于我从2sxc.org网站导入的应用程序也是如此。所以我知道它不仅仅是我的模板,因为它也发生在我创建的所有使用不同模板的应用程序上。
但要彻底,这是我的模板代码,基于令牌:
<div class="kr-gallery animation">
<p>Hover or touch image and click brush icon for more details</p>
<div class="isotope_grid isotope_grid2">
<div class="isotope_main animation" data-min-width="230">
<repeat repeat="Content in Data:Default">
<div class="isotope_item kr-gallery-item sc-element">[Content:Toolbar]
<div class="photo"><a href="[Tab:FullUrl]/details/[Content:EntityId]"> <img alt="" src="[Content:Image]?h=500" />
<span class="fa fa-paint-brush"></span></a>
</div>
</div>
</repeat>
</div>
</div>
</div>
知道为什么会这样吗?
这是我的视觉查询:
根据回答,我改用剃刀,因为我使用的是自定义查询。这是我现在的简单模板代码:
@* this will show an "add" button if the current user is an editor *@
@Edit.Toolbar(actions: "new", contentType: "Image")
@{
// get all images as delived from the standard query
var images = AsDynamic(Data["Default"]);
}
<div class="kr-gallery animation">
<p>Hover or touch image and click brush icon for more details</p>
<div class="isotope_grid isotope_grid2">
<div class="isotope_main animation" data-min-width="230">
@foreach(var img in images)
{
<div class="isotope_item kr-gallery-item sc-element">@img.Toolbar
<div class="photo"><a href="@Link.To(parameters: "details=" + img.EntityId)"> <img alt="@img.Title" src="@img.Image?h=500" />
<span class="fa fa-paint-brush"></span></a>
</div>
</div>
}
</div>
</div>
</div>
答案 0 :(得分:1)
缺失+是设计的,因为编辑器习惯于在前一个项目之后添加一个项目。查询无法保证此行为,因为事物的顺序由查询确定。如果查询参数隐藏了该项,则甚至可能无法显示添加项目。
所以设计模式是提供一个单独的+按钮。最简单的方法是剃刀,我相信代码就像
@ Edit.Toolbar(actions:“new”,contentType:“your-content-type-name”)
在令牌中,它有点混乱,您无法有条件地检查用户是否具有编辑权限。
所以我建议你去edit.toolbar方式
您还可以在博客应用中找到相关示例:http://2sxc.org/en/apps/app/dnn-blog-app-for-dnn-dotnetnuke
答案 1 :(得分:0)
我可能错了,但您最近是否尝试过使用可视化查询设计器?因为这可能是原因。
最常见的原因是当您使用管道(可视查询)将数据传递到模板时,该模板未分配给此实例。原因是&#34;添加&#34;在实例 - 项目列表中将其添加到特定位置(就像在第一个项目之后)。当您使用数据库之类的数据时,这并不相同 - 因为在该场景中没有排序。所以如果这是原因,我会帮助你更多。