Ext.Net/Ext JS_Ext.Net.Store检索(4)
来源:未知 责任编辑:责任编辑 发表时间:2014-05-10 12:25 点击:次
width: 500,
html: vals.join(','),
title: 'Title'
});
};
var yourGetById = function(store, getByIdValue) {
var record = store.getById(getByIdValue);
alert(record.data.Id + " " + record.data.Common);
}
</script>
Store.getCount(…) 和 getTotalCount() 以及 Store.each(…)
getCount( ) : Number
each( Function fn, [Object scope] ) : void
Store.getCount(…) 可以获得已缓存的记录数量。若使用分页,则这个数量不是数据集的全部数量。若使用 Reader 数据对象包含数据集的大小,则 getTotalCount 函数返回数据集的大小。也就是说,若使用分页,则该方法返回当前页的数据大小。
Store.each(…) 对缓存中的每个 Record 调用你指定的函数。
<script type="text/javascript">
var yourGetCount = function(store) {
var vals = [];
//for (var i = 0; i < store.getTotalCount(); i++) {
// vals.push(store.getAt(i).data.Id + "-" + store.getAt(i).data.Common);
//}
for (var i = 0; i < store.getCount(); i++) {
vals.push(store.getAt(i).data.Id + "-" + store.getAt(i).data.Common);
}
Ext.net.Notification.show({
iconCls: 'icon-information',
pinEvent: 'click',
height: 500,
width: 500,
html: vals.join(','),
title: 'Title'
});
};
var yourEach = function(store) {
var vals = [];
store.each(function(r) {
vals.push(r.data.Id + "-" + r.data.Common);
}, this);
相关新闻>>
- 已知Random.Next(1,10),产生1至100不重复的随机数据
- 用OpenXml在文档的尾部添加一个Rich Text Content Control/Plain
- .net编程中的javascript中调用textbox控件
- asp.net中TextBox设为只读后的取值问题
- 解决ASP.NET 在IIS 7中提示EXT未定义的错误
- 用OpenXml在文档的尾部添加一个Rich Text Content Control/Plain
- 使用 iTextSharp 生成 PDF 表格
- 线程间操作无效: 从不是创建控件“textBox2”的线程访问它。
- OutputCache造成页面响应内容类型为text/vnd.wap.wml的问题
- 线程间操作无效: 从不是创建控件“textBox2”的线程访问它。
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>