摘要: Extjs 日期选择控件代码示例: (function(){ Ext.onReady(function(){ Ext.QuickTips.init(); Ext.create('Ext.form.Panel',{ title:'Ext.form.field.Date示例', frame:true, ... 阅读全文
posted @ 2014-07-30 22:21 thero 阅读(155) 评论(0) 推荐(0)
摘要: Ext.form.field.Time拓展自Ext.form.field.Picker组件,是带下来选择框的时间框输入字段;并且有自动的时间验证功能;代码示例: (function(){ Ext.onReady(function(){ Ext.QuickTips.init(); Ext.create('Ext.form.Panel',{ ... 阅读全文
posted @ 2014-07-30 22:00 thero 阅读(274) 评论(0) 推荐(0)
摘要: Extjs 使用combo来请求数据:在运用该方法的时候可以会遇到下面的问题:1、展示的时候数据不能够展示出来解决的方法为:类当中的属性名称定义错误;reader书写的文字不正确;fields是否书写错误代码示例:前台代码示例: (function(){ Ext.onReady(function(){ Ext.regModel('BookInfo',{ ... 阅读全文
posted @ 2014-07-30 11:52 thero 阅读(907) 评论(0) 推荐(0)
摘要: Ext.form.field.comboBox主要配置内容:Ext.view.BoundList配置内容:代码示例: (function(){ Ext.onReady(function(){ Ext.regModel('PostInfo',{ fields:[{ name:'province' ... 阅读全文
posted @ 2014-07-30 11:40 thero 阅读(1196) 评论(0) 推荐(0)