随笔分类 -  AJAX(JQuery/EXTJS/Flex)

摘要:在JS中将JSON的字符串解析成JSON数据格式,一般有两种方式:1.一种为使用eval()函数。2. 使用Function对象来进行返回解析。使用eval函数来解析,并且使用jquery的each方法来遍历用jquery解析JSON数据的方法,作为jquery异步请求的传输对象,jquery请求后... 阅读全文
posted @ 2015-05-13 14:39 残星 阅读(1119) 评论(0) 推荐(0) 编辑
摘要:JQuery是一款非常优秀的脚本框架,其丰富的控件使用起来也非常简单,配置非常灵活。下面做一个使用日期插件datapicker的例子。1、下载jQuery核心文件就不用说了吧,datepicker是轻量级插件,只需jQuery的min版本就行了,然后到官网http://jqueryui.com/do... 阅读全文
posted @ 2014-12-30 15:00 残星 阅读(8002) 评论(0) 推荐(0) 编辑
摘要:url: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。type: 要求为String类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和delete也可以使用,但仅部分浏览器支持。timeout: 要求为Number类型的参数,设置请求超... 阅读全文
posted @ 2014-12-16 11:29 残星 阅读(653) 评论(0) 推荐(1) 编辑
摘要:1、Ext.grid.GroupingView主要配置项: enableGroupingMenu:是否在表头菜单中进行分组控制,默认为true groupByText:表头菜单中分组控制的菜单文字,默认为'Group By This Field' enableNoGroups:是否允许用户关闭分组功... 阅读全文
posted @ 2014-08-23 16:38 残星 阅读(8656) 评论(0) 推荐(0) 编辑
摘要:private boolean import_to_database(String excel_path) throws BiffException, IOException, HsException{ File file = new File(excel_path);//根据文件名创... 阅读全文
posted @ 2014-08-23 16:26 残星 阅读(5308) 评论(0) 推荐(0) 编辑
摘要:if(document.getElementById("lxdj_radio").checked){ colQd = new Ext.grid.ColumnModel(colMArray_lxdj); }else{ colQd = new Ext.grid.ColumnModel(colM... 阅读全文
posted @ 2014-08-23 16:18 残星 阅读(2361) 评论(0) 推荐(0) 编辑
摘要:Ext实现方式://方法一var key = new Ext.KeyMap(document,{key: 8,fn: function(obj,e){var type = e.target.type;var readonly = e.target.readOnly;if(type != 'text'... 阅读全文
posted @ 2014-08-23 09:33 残星 阅读(3307) 评论(1) 推荐(1) 编辑
摘要:Ext中的combobox有属性typeAhead:true 可以实现模糊匹配,但是是从开始匹配的,如果需要自定的的匹配,则需要监听beforequery方法,实现自己的匹配查询方法:var gfxmComb = new Ext.form.ComboBox({ id : 'gfxmC... 阅读全文
posted @ 2014-02-27 22:46 残星 阅读(14665) 评论(0) 推荐(0) 编辑
摘要:{ xtype:'combo', width:100, //id:'exTypeCom', name:'exType', hiddenName:'exType', displayField:'text', valueField:'value', editable:true, forceSelection:true, triggerAction:'all', mode:'local', store:examine_type_store }下拉框的位置跑到左上角了,将id 阅读全文
posted @ 2014-02-27 22:33 残星 阅读(433) 评论(0) 推荐(0) 编辑
摘要:Extjs设置GridPanel选中行背景色和选中单元格背景色varview=grid.getView();view.getRow(index).style.backgroundColor="red";//选中行背景色view.getCell(rowIndex,colIndex).style.bac... 阅读全文
posted @ 2014-02-21 21:52 残星 阅读(17234) 评论(0) 推荐(0) 编辑
摘要:1、返回指定元素的第一个子元素或者NULLfunction first(obj){ var e=obj.firstChild; //获取元素的第一个子结点 while(e && e.nodeType != 1){//如果存在该子结点,且类型不等于元素,则搜索下一个结点,直到结点类型为元素 e = e.nextSibling; } return e;}2、返回指定元素的最后一个子元素或者NULLfunction last(obj){ var e=obj.lastChild; //获取元素的最后一个子结点 while(e && e.nodeType != 1){// 阅读全文
posted @ 2013-01-22 14:39 残星 阅读(292) 评论(0) 推荐(0) 编辑
摘要:jQuery(function (){ var i = 2; jQuery("#doctor_list").bind("scroll", function (event) { var obj = document.getElementById("doctor_list... 阅读全文
posted @ 2013-01-22 14:06 残星 阅读(690) 评论(0) 推荐(0) 编辑
摘要:1.web.xml action org.apache.struts.action.ActionServlet config /WEB-INF/struts-config.xml debug 3 detail 3 0 action *.do index.jsp 2.stru... 阅读全文
posted @ 2012-03-28 11:28 残星 阅读(6192) 评论(0) 推荐(0) 编辑
摘要:1.引入js2.联动动态动态联动下拉列表 --> 查询条件: 年龄: 满足条件的学生:-------------------------------------------------------------- public class DynamicList extends HttpServlet... 阅读全文
posted @ 2012-03-21 21:54 残星 阅读(299) 评论(0) 推荐(0) 编辑