Xslt jqueryui未使用的div

时间:2017-01-11 08:03:28

标签: html css jquery-ui xslt

首先是一个警告,我对xslt是一个极端的菜鸟,所以请原谅这是一个非常愚蠢的问题。

我有这样的div,

<div id="objectLocked"> This object is locked by another user. Do you want to remove the lock?</div>

在xsl:template中创建,用于jqueryui对话框,如下所示,

$(function() { <xsl:if test="abc:hastext($activeschemadeflockedby) and not($activeschemadeflockedby=$currentuserdn)"> $( '#objectLocked' ).dialog({ autoOpen: true, buttons: [ { text: "Yes", click: function() { updateLockedby(); $( this ).dialog( "close" ); } }, { text: "No", click: function() { $( this ).dialog( "close" ); } } ], title: "Object locked", model: true }); </xsl:if>

问题是如果没有使用div(if-test为false),则表单“。

上会显示”This object is ...“字样。

我可以做些什么来避免它被显示?

干杯

哈利

1 个答案:

答案 0 :(得分:0)

不需要明确定义,只需使用此问题中的解决方案:Jquery-UI Dialog - on the fly without DIV