上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 42 下一页
摘要: http://www.cnblogs.com/knowledgesea/p/3286661.html 阅读全文
posted @ 2014-03-26 13:57 尼姑哪里跑 阅读(274) 评论(0) 推荐(0) 编辑
摘要: Ext.onReady(function () { var sm = new Ext.grid.RowSelectionModel({singleSelect:true})//设置单选 //var sm = new Ext.grid.CheckboxSelectionModel();//设置多选 var cm = new Ext.grid.ColumnModel([ new Ext.grid.RowNumberer(), //显示行... 阅读全文
posted @ 2014-03-25 22:01 尼姑哪里跑 阅读(1563) 评论(0) 推荐(0) 编辑
摘要: Ext.onReady(function () { var cm = new Ext.grid.ColumnModel([{ header: "id", dataIndex: "id" }, { header: "name", dataIndex: "name" }, { header: "score", dataIndex: "score"}]); var data... 阅读全文
posted @ 2014-03-25 20:44 尼姑哪里跑 阅读(552) 评论(0) 推荐(0) 编辑
摘要: Ext.onReady(function () { var tab = new Ext.TabPanel({ renderTo: Ext.getBody(), height: 500 }) tab.add({ title: "tab1", html:"content" }) tab.add({ id:Ext.id(), ... 阅读全文
posted @ 2014-03-25 20:21 尼姑哪里跑 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 其中使用到的"RowExpander.js"为extjs官方示例中自带的。实现这个嵌套表格要注意两点技巧:1 提供给外层表格的dataStore的数据源以嵌套数组的形式表示细节区的数据,如下面的黑体所示。vartestData=[["lugreen","男",26,[["数学",100],["语文",150]]],["lisi","男",25,[["数学",100],["语文",150]]],["zhang 阅读全文
posted @ 2014-03-25 19:52 尼姑哪里跑 阅读(1359) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using WebUI.Mall;namespace WebUI.NewMall.PropertyManage{ public partial class CategoryPropertyInfo : PageBaseMall {... 阅读全文
posted @ 2014-03-25 17:53 尼姑哪里跑 阅读(407) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/fangsui/category/372751.htmlhttp://www.cnblogs.com/WangJinYang/tag/EXT.NET/http://www.cnblogs.com/codelove/tag/Ext.NET/ 阅读全文
posted @ 2014-03-13 13:50 尼姑哪里跑 阅读(301) 评论(0) 推荐(0) 编辑
摘要: 文档对象dom是javascript与页面元素的桥梁选择器的作用就是通过元素的标签名,属性名,css属性名对页面进行快速,准确的定位及选择Extjs的选择器:Ext.DomQueryExt.query(path[,root,type])path:查询要使用的选择符,或xpathroot:查询开始的节点或节点id。如果不设置,默认为document对象,为了提高速度,不要使用document开始查询type:查询的类型,值可以为select和simple,当值为simple时使用id或标签属性值等座简单的查询demo: var el=Ext.get(rootId); //rootId为节点id. 阅读全文
posted @ 2014-03-13 13:37 尼姑哪里跑 阅读(7066) 评论(0) 推荐(1) 编辑
摘要: 东西不用,时间长了就会被忘掉。重新拾起来做一个简单的Demo,便于以后的查询服务器端--新建Calculator.asmxusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Services;namespace WebServiceDemo{ /// /// Calculator 的摘要说明 /// [WebService(Namespace = "http://tempuri.org/")] [WebServiceB... 阅读全文
posted @ 2014-03-11 20:43 尼姑哪里跑 阅读(294) 评论(0) 推荐(0) 编辑
摘要: Extjs中事件包括浏览器事件(单机按钮,鼠标移动等触发)和内部事件(组件之间的联动)绑定浏览器事件的过程Ext.EventManager要为元素绑定事件,通常会使用EventManager.on方法Ext.EventManager.on(el,eventname,fn[,scope,options])el要绑定的事件元素,可以为元素的id,element对象获htmlelement对象eventname一般情况下是事件的名称,但是在一次定义多个事件时可以是一个对象,当eventname是事件名称时,fn就是事件要触发的函数,当eventname是对象时fn会被忽略scope;作用域optio 阅读全文
posted @ 2014-03-06 18:01 尼姑哪里跑 阅读(3135) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 42 下一页