SharePoint 2013内容查询Web Part 4过滤器



我有以下代码nippet,可以在内容查询webpart中过滤blogposts。我们需要SharePoint中已经给出的3个过滤器,因此我尝试了CMAL-Query。但是,当我将webpart添加到我的SPPAGE中时,该过滤器不适用。有什么建议如何更改代码?

帖子应按类别过滤。

 <property name="QueryOverride" type="string">
                <![CDATA[
                <where>
                    <or>
                        <or>
                            <Eq>
                                <FieldRef Name='PostCategory' />
                                <Value Type='Text'>test4</Value>
                            </Eq>
                            <Eq>
                                <FieldRef Name='PostCategory' />
                                <Value Type='Text'>test5</Value>
                            </Eq>
                        </or>
                        <or>
                            <Eq>
                                <FieldRef Name='PostCategory' />
                                <Value Type='Text'>Ideen</Value>
                            </Eq>
                            <Eq>
                                <FieldRef Name='PostCategory' />
                                <Value Type='Text'>Meinungen</Value>
                            </Eq>
                        </or>
                    </or>
                </where>
            ]]>
            </property>

nvm。

我发现了我的错误。使用U2U CAML构建器现在按预期运行所有内容。

相关内容

  • 没有找到相关文章

最新更新