出现在 2sxc 项目上方的添加按钮突然不见了。几天前就在那里,但现在当我登录到我的 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>