我正在专门使用 Tridion 2011 的 PowerTools 扩展,但这适用于仪表板中带有按钮的任何 Anguilla 扩展。
我们可以设置<ext:title>
获得悬停工具提示。用户将鼠标悬停在 GUI 扩展按钮上以查看此文本。请参阅配置中的“计数项目”扩展名的示例。
<ext:extension assignid="CountItems" name="Count Items"
pageid="Power Tools" groupid="Tools">
<ext:command>PT_CountItems</ext:command>
<ext:title>Count Items</ext:title>
<ext:issmallbutton>false</ext:issmallbutton>
<ext:dependencies>
<cfg:dependency>PowerTools.Commands</cfg:dependency>
</ext:dependencies>
<ext:apply>
<ext:view name="DashboardView" />
</ext:apply>
</ext:extension>
当未启用扩展程序时,我们要求将此工具提示更改为一些有用的文本。
我可以在 Chrome 控制台的按钮中看到“计数项目”文本。
<div id="CountItems" class="tridion button PT_CountItems ribbonitem disabled"
title="Count Items" c:command="PT_CountItems"
c:controltype="Tridion.Controls.RibbonButton"
style="-webkit-user-select: none; ">
<div class="image"> </div>
<div class="text">Count Items</div>
</div>
同样在控制台中,我可以选择包含文本的 div:$("div#CountItems > div.text")
。我不确定如何获取文本。
问题: 当 GUI 按钮处于非活动状态时,我应该/应该如何更改工具提示文本?
我可能也需要澄清这些。
- 在 Anguilla(或 PowerTools)中,
$()
与jQuery()
? 我试过$("div#CountItems > div.text").text()
了Object #<HTMLDivElement> has no method 'text'
- 当按钮被禁用时,是否有首选或可配置的方式来设置该工具提示?我确信我们可以在 DOM 中找到一个元素,但我可能遗漏了一些东西。
最后,
{NameSpace}.Commands.{ExtensionName}.prototype.isValidSelection = function(selection) { }
通常是更改此工具提示的正确位置吗?- 对于上下文菜单,我相信我们有 _isAvailable 代替。