我需要一些帮助,我已经生成了一个xml文件,我希望在其中占一小部分并包含在新的xml中。
我正在c#中使用xmlWriter
例如:
我的第一个xml:
<h:body>
<h:outputScript>
$(document).ready(function(){
// try to get a reference to the DF widget from top window context:
var dfWidgetVar = window.top.$('[data-pfdlgcid]').attr('data-widgetvar');
var dfWidget = window.top.PF(dfWidgetVar);
// clear closeIcon click event listener stack and add your remoteCommand:
dfWidget.closeIcon.unbind('click').on('click', dfClosed);
});
</h:outputScript>
<h:form>
...
<p:remoteCommand name="dfClosed" action="#{myBean.dfClosed}"/>
</h:form>
</h:body>