SmartForm字段为空时如何隐藏元素

时间:2018-06-20 18:33:55

标签: c# html ektron

我有一个警报栏,它从智能表单获取其文本。我正在尝试进行设置,以便当smartform字段“ Alert”为空时,警报栏将被隐藏。这是我的代码:

<div runat="server" ID="alertBox"  class="alert alert-danger">
    <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
       <center>
           <CMS:ContentBlock ID="alert" runat="server" Visible="true" DisplayXslt="/xmlfiles/Alert.xslt" DefaultContentID="2147499035" CssClass="text" />
    </center>
</div>

到目前为止,这是我的背后代码:

   XmlDocument al = new XmlDocument();
    if (al.SelectSingleNode("/root/Alert") != null)
    {
        alertBox.Visible = false;
    }
    else
    {
        alertBox.Visible = true;
    }

1 个答案:

答案 0 :(得分:0)

让我们开始确保您的XmlDocument引用了内容块控件中的smartform xml。

XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(alert.EkItem.Html);

通过这种方式,这就是我将如何测试以验证(a)节点是否存在以及(b)节点是否包含文本。

string alertContent;

// If dealing with a plain-text field...
var txtAlertNode = xmlDoc.SelectSingleNode("/root/txtAlert");
alertContent = txtAlertNode?.InnerText;
if (string.IsNullOrWhiteSpace(alertContent))
{
    Console.WriteLine("No txtAlert content.");
    // alertBox.Visible = false;
}
else
{
    Console.WriteLine("ALERT: " + alertContent);
    // alertBox.Visible = true;
}

// If dealing with a rich-text field...
var rtfAlertNode = xmlDoc.SelectSingleNode("/root/rtfAlert");
if (string.IsNullOrWhiteSpace(rtfAlertNode?.InnerText))
{
    Console.WriteLine("No rtfAlert content.");
    // alertBox.Visible = false;
}
else
{
    alertContent = rtfAlertNode.InnerXml;
    Console.WriteLine("ALERT: " + alertContent);
    // alertBox.Visible = true;
}

但是,由于您具有内容块控件来呈现实际的警报内容,因此您可以避免此类情况。

var alertNode = xmlDoc.SelectSingleNode("/root/Alert");
if (string.IsNullOrWhiteSpace(alertNode?.InnerText))
{
    alertBox.Visible = false;
}
else
{
    alertBox.Visible = true;
}

在Ektron SmartForms中,可以选择使字段为可选,因此/root/Alert节点可能为空。但是该节点也可能存在于xml中,并且简单地没有任何内容。如果将其配置为RTF字段,则可能很难完全清除该字段的HTML-通常您最终得到的XML如下所示:

<root>
    <Alert>
        <p></p>
    </Alert>
</root>

这就是为什么我要测试节点的InnerText属性。我使用Null-Conditional Operator ?.来说明节点本身可能为null的事实。如果您的Ektron网站没有使用较新的C#语言功能(我知道,空条件已经存在了几年。),那么您就必须分别检查空值。

var alertNode = xmlDoc.SelectSingleNode("/root/Alert");
if (alertNode != null && string.IsNullOrWhiteSpace(alertNode.InnerText))
{
    alertBox.Visible = false;
}
else
{
    alertBox.Visible = true;
}

如果可以的话,我想提出一个替代方案。从您的代码中可以看到,您已经在使用XSLT来显示警报的内容。您可以将alertBox div的标记移到XSLT中,然后在其中执行“ null-or-empty”测试。然后,您无需为此功能提供任何代码。

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"
>
  <xsl:output method="html" indent="yes"/>

  <xsl:template match="/">

    <xsl:call-template name="alertBox">
      <xsl:with-param name="content" select="root/txtAlert/text()"/>
    </xsl:call-template>

    <xsl:call-template name="alertBox">
      <xsl:with-param name="content" select="root/rtfAlert/node()"/>
    </xsl:call-template>

  </xsl:template>

  <xsl:template name="alertBox">
    <xsl:param name="content"/>
    <xsl:if test="$content and (string-length(translate(normalize-space($content/text()), ' ', '')) &gt; 0 or string-length(translate(normalize-space($content), ' ', '')) &gt; 0)">
      <div runat="server" ID="alertBox"  class="alert alert-danger">
        <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
        <center>
          <xsl:copy-of select="$content"/>
        </center>
      </div>
    </xsl:if>
  </xsl:template>
</xsl:stylesheet>

请注意,此XSLT中的alertBox模板将适用于纯文本字段和富文本字段。它使用copy-of来显示任何传入的内容,因此在调用模板时,需要注意传入text()(纯文本)或node()(html /富文本格式)。