- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我想做的是在带有一些自定义类的 div 中显示 SharePoint 列表中的一些内容。第一个脚本使用来自 Awkward Showcase 的 jquery 插件所以,我的 CAML 查询有效。我有在 div 标签中调用的函数,因为我想将它显示为缩略图标题,但是,它似乎覆盖了页面上的所有内容并最后处理。
所以我所有的 div 标签和内容都没有了,它只在页面上写了函数的结果。
这是我的代码:
<script type="text/javascript">
`$(document).ready(function()'
{
$("#showcase").awShowcase(
{
content_width: 700,
content_height: 470,
fit_to_parent: false,
auto: false,
interval: 3000,
continuous: false,
loading: true,
tooltip_width: 200,
tooltip_icon_width: 32,
tooltip_icon_height: 32,
tooltip_offsetx: 18,
tooltip_offsety: 0,
arrows: true,
buttons: true,
btn_numbers: true,
keybord_keys: true,
mousetrace: false, /* Trace x and y coordinates for the mouse */
pauseonover: true,
stoponclick: true,
transition: 'hslide', /* hslide/vslide/fade */
transition_delay: 300,
transition_speed: 500,
show_caption: 'onhover', /* onload/onhover/show */
thumbnails: true,
thumbnails_position: 'outside-last', /* outside-last/outside-first/inside-last/inside-first */
thumbnails_direction: 'horizontal', /* vertical/horizontal */
thumbnails_slidex: 0, /* 0 = auto / 1 = slide one thumbnail / 2 = slide two thumbnails / etc. */
dynamic_height: false, /* For dynamic height to work in webkit you need to set the width and height of images in the source. Usually works to only set the dimension of the first slide in the showcase. */
speed_change: false, /* Set to true to prevent users from swithing more then one slide at once. */
viewline: false /* If set to true content_width, thumbnails, transition and dynamic_height will be disabled. As for dynamic height you need to set the width and height of images in the source. */
});
});
</script>
<script type="text/javascript">
function GetNews(){
/*Get News*/
$().SPServices({
operation: "GetListItems",
webURL: 'http://weburl.com',
async: false,
listName: "Posts",
CAMLViewFields: "<ViewFields><FieldRef Name='Title' /><FieldRef Name='Primary' /><FieldRef Name='Pic' /><FieldRef Name='Short_x0020_Description' /></ViewFields>",
CAMLRowLimit: "10",
CAMLQuery: "<Query><Where><Eq><FieldRef Name='Primary'/><Value Type='choice'>1</Value></Eq></Where></Query>",
completefunc: function (xData, Status) {
//alert("Status of XML message reaching Sharepoint webservice: " + Status);
//alert("Response from server: " + xData.responseText);
$(xData.responseXML).SPFilterNode("z:row").each(function () {
var name = ($(this).attr("ows_Title"));
document.write(name);
});
}
}); //Close getNews
}
</script>
<body>
<div style="width: 700px; margin: auto;">
<div id="showcase" class="showcase">
<!-- Each child div in #showcase with the class .showcase-slide represents a slide. -->
<div class="showcase-slide">
<!-- Put the slide content in a div with the class .showcase-content. -->
<div class="showcase-content">
<!-- The image below needs to be from the variable above pictureUrl -->
<img src="images/01.jpg" alt="01" />
</div>
<!-- Put the thumbnail content in a div with the class .showcase-thumbnail -->
<div class="showcase-thumbnail">
<!-- The image below needs to be from the variable above pictureUrl -->
<img src="images/01.jpg" alt="01" width="140px" />
<!-- The div below with the class .showcase-thumbnail-caption contains the thumbnail caption. This needs to be the variable 'name' from above -->
<div class="showcase-thumbnail-caption"><div><script type="text/javascript">GetNews()</script></div></div>
<!-- The div below with the class .showcase-thumbnail-cover is used for the thumbnails active state. -->
<div class="showcase-thumbnail-cover"></div>
</div>
<!-- Put the caption content in a div with the class .showcase-caption. This needs to be the variable 'postDesc' from above -->
<div class="showcase-caption">
<h2>Be creative. Get Noticed!</h2>
</div>
</div>
</div>
</div>
</body>
最佳答案
好吧,它可能无法正常工作,因为您是直接将其写入文档而不是特定的 div
$(xData.responseXML).SPFilterNode("z:row").each(function () {
var name = ($(this).attr("ows_Title"));
document.write(name);//this line needs a fix maybe $('#divID').append('<h1>'+name+'<h1>') for eg
});
关于javascript - 在 DIV 中显示来自 SharePoint 的 CAML 查询结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13039493/
谁能帮我解决这个 CAML 查询问题?当我将 Ascending 属性从 TRUE 翻转到 FALSE 时(也尝试过 True 和 False), 它不会重新排序结果集。 CAML 的其余部分是正确的
我们如何根据日期时间字段对 sharepoint 列表项进行排序,我需要在毫秒级别进行排序。目前我正在使用如下 CAML 查询 最佳答案 对于 OrderBy CAML 部分,在没有 Type 和
有没有办法在 SharePoint 2010 中执行类似“NOT IN”的行为?我可以轻松实现这样的 IN 行为: 1 2
我正在使用日历列表进行一些房间预订,一切都很好,但只是在 上挣扎重叠或双重预订 同一天同一时间的房间。 我试图通过将用户在表单中输入的数据传递给 CAML Query 并检查此条目是否存在来弄清楚 如
我这里遇到麻烦了!我有一个共享点网站,其中有一个照片库列表(PhotoGallery)。我需要查询此列表是否从指定的图库(文件夹)中带回图像。我开发了一个带有选择菜单的 Web 部件,该菜单加载此照片
我在 sharepoint 中有一份员工名单。 Employee 列表中的一列是名为 Organization 的查找列。我正在尝试编写一个 CAML 查询来获取组织值不为空的所有员工。但是,即使 O
我正在运行一个共享点 caml 查询,我想在其中检查项目上的字段是否等于多个值之一。我动态地执行此操作,并可能希望检查数百个值。 我发现在执行包含 780 个 OR 元素的查询时,我遇到了与服务器内存
我想从 SPList 中检索日期范围内的项目。开始日期为今天,结束日期为从今天起 30 天后的第二天。这是我的 CAML 查询。 query.Query = string.Concat(@ "
我想使用 CrossListQueryCache 选择文档库的文件夹列表(没有子文件夹,不是递归的)。 一切正常,只是我收到了列表中的所有文件夹和子文件夹,而不仅仅是第一级文件夹。我需要在下面的代码中
我有一个从共享点列表中提取数据的 caml 查询 这是我正在使用的查询 tempQuery = "John"+CURRENT_USER_Info.currFilter+""; 问题是我只搜索了 Joh
我有一个指向 100,000 条记录的 SQL 表的 SharePoint 外部列表。我必须在读取列表操作上设置过滤器,否则列表不起作用。它会在尝试返回完整列表时超时。所以我在操作中添加了一个大小为
在 CAML我可以使用“包含”元素查询 SharePoint 列表项,但没有我可以使用的“不包含”元素。 那么获取不包含字符串的项目的最佳方法是什么?有没有比遍历每个项目更好的方法? 最佳答案 相同的
我列表中的标题列仅包含年份。我想提出一个观点,我只展示过去 3 年的内容。 我正在尝试在列表定义中使用 CAML 查询: ???? 我
具有多值的查找字段的caml 查询是什么? 到目前为止,我使用以下内容没有成功(它只是抛出一个错误)。 我的查找列是: Lookup ------- 2;3 2 3;4 2 那个查询有什么问题?? 最
在 SharePoint 日历列表中,我创建了两个带有今天日期的事件。一个我进行全天事件,另一个我将开始时间设置为上午 12 点,结束时间为晚上 11:55。 当我创建 CAML 查询(在本例中使用“
我正在尝试编写针对特定 SPList 执行的 CAML 查询,范围限定为特定文件夹,从该点开始递归,并返回所有 ListItems(满足条件)和文件夹。 这是查询的代码,它看起来应该可以工作(为了可读
有没有一种“不错”的方式来为 SharePoint 创建一个 CAML 查询来做这样的事情? SELECT * FROM table WHERE Id IN (3, 12, ...) 还是我陷入了嵌套
是否可以对共享点列表进行分组并使用聚合函数?(求和、计数等) 最佳答案 是的,这是可能的。 见: GroupBy Aggregation 关于sharepoint - 可以在 Caml 查询上使用聚合
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我在通过 CAML 查询访问共享点列表中的最后一条记录时遇到了一些问题,任何人都可以帮助我重新毕业;我有一个名为“MainHeads”的示例列表,其中包含诸如 HeadID、Category 和 he
我是一名优秀的程序员,十分优秀!