Domanda

Di recente ho dovuto cambiare un webpart ListView e ho notato la sintassi che rende il codice HTML non è XSLT. E 'questa sintassi documentato da qualche parte?

Esempio

<IfEqual>
            <Expr1>
                <GetVar Name="BlogPublishedCurrentDate"/>
            </Expr1>
            <Expr2>
                <Column Name="PublishedDate" Format="DateOnly" HTMLEncode="TRUE"/>
            </Expr2>
            <Then/>
            <Else>
                <HTML>
                    <![CDATA[<h3 class="ms-PostDate">]]></HTML>
                <Column Name="PublishedDate" Format="DateOnly" HTMLEncode="TRUE"/>
                <HTML>
                    <![CDATA[</h3>]]></HTML>
                <SetVar Name="BlogPublishedCurrentDate" Scope="Request">
                    <Column Name="PublishedDate" Format="DateOnly" HTMLEncode="TRUE"/>
                </SetVar>
            </Else>
        </IfEqual>
È stato utile?

Soluzione

E ' CAML . Ecco riferimento MSDN .

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a sharepoint.stackexchange
scroll top