Hi,
I've been looking at the in-context editing function, using the Site Developer documentation.
All of our components are using XSL transformation mode and the example Interwoven component I'm using as reference (Basic Content) uses HTML.
So My question is can you have in-context editing with XSL based components or do they have to be HTML only?
I've included an example of a component for reference:
Appearance
<!DOCTYPE html-entities SYSTEM "http://www.interwoven.com/livesite/xsl/xsl-html.dtd">
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:include href="http://www.interwoven.com/custom/iw/xsl/InContextTest/default.xsl"/>
<xsl:template match="/">
<xsl:call-template name="InContextTest" />
</xsl:template>
</xsl:stylesheet>
Content XML
<Data>
<External>
<Parameters>
<Datum ID="InContextText" Type="DCR" Name="InContextText DCR">
<DCR Category="TestArea" Type="InContextText"/>
</Datum>
</Parameters>
<Object Scope="local">com.myCompany.myExternal</Object>
<Method>processContent</Method>
</External>
</Data>
Many thanks