sharepoint-designer

SharePoint Designer Workflows - tips and resources?

不羁岁月 提交于 2019-11-30 16:30:57
I'm working on revising some existing SPD WF's and strugling with some of the concepts including why 2 appearingly alike WF's doesn't produce the same output. Are there anyone of you that has worked with SharePoint Designer / Workflows and knows any good resources (more detailed than the MSDN introductions) or tips on the matter. E.g. on debugging and how to inspect settings and how to connect information from several workflows... In other words: come up with your best SPD WF links & tips :o) I'm not able to choose another solution at the moment, so any tips are welcome. I have the USPJ

SharePoint Designer Workflows - tips and resources?

跟風遠走 提交于 2019-11-29 23:50:42
问题 I'm working on revising some existing SPD WF's and strugling with some of the concepts including why 2 appearingly alike WF's doesn't produce the same output. Are there anyone of you that has worked with SharePoint Designer / Workflows and knows any good resources (more detailed than the MSDN introductions) or tips on the matter. E.g. on debugging and how to inspect settings and how to connect information from several workflows... In other words: come up with your best SPD WF links & tips :o)

XSL - How to disable output escaping for an attribute?

谁都会走 提交于 2019-11-29 04:02:15
I've had the following <a> tag: <a href="http://myserver/_forms?url={@FileRef}&id=5">...</a> One of the files is called "File's got apostrophe.xml" . The output of the XSL is: <a href="http://myserver/_forms?url=/blah/File&#39;s got apostrophe.xml&id=5">...</a> The problem is that the apostrophe is HTML-escaped (twice?) into &#39; , which breaks the link. I've also tried using <xsl:attribute> , with same results: <a> <xsl:attribute name="href"> <xsl:value-of select="concat('http://myserver/_forms?url=', @FileRef, '&id=5')" disable-output-escaping="yes" /> </xsl:attribute> </a> Outputting <xsl

XSL - How to disable output escaping for an attribute?

岁酱吖の 提交于 2019-11-27 18:02:36
问题 I've had the following <a> tag: <a href="http://myserver/_forms?url={@FileRef}&id=5">...</a> One of the files is called "File's got apostrophe.xml" . The output of the XSL is: <a href="http://myserver/_forms?url=/blah/File&#39;s got apostrophe.xml&id=5">...</a> The problem is that the apostrophe is HTML-escaped (twice?) into &#39; , which breaks the link. I've also tried using <xsl:attribute> , with same results: <a> <xsl:attribute name="href"> <xsl:value-of select="concat('http://myserver/