JQuery
gdclx
在学校学的是Fortran,出来工作后先使用Basic Plus,然后是C、C++ 、Delphi、Java,Python。偶尔也用ASP、Lotus、VB、C#等编程工具。不是专职搞软件开发,最得意的作品是在DOS时代,用C/C++开发了POS
展开
-
jqGrid-colModel之自定义输入函数
参考文章: http://www.trirand.com/jqgridwiki/doku.php?id=wiki:common_rules#editable参考文章中edittype:'custom'示例有些问题,正确调用请看下面例子。本例子主要想实现input输入框的onclick事件。 colNames:['ID','用户名','密码','权限'], colModel:原创 2011-12-10 22:54:10 · 2489 阅读 · 0 评论 -
jqGrid——合计、默认查询条件、自适应、序号等
几个问题的实现方法请参考不同颜色的代码:1、序号rownumbers: true, 2、合计gridComplete: function()3、默认日期 $("#actualMonth").attr("value",GetDateStr(-1));4、获取系统日期的前几天或者后几天function GetDateStr(AddDayCount) ;5、一转载 2013-10-10 09:21:00 · 5830 阅读 · 0 评论 -
struts2-jquery, struts-jquery-grid-tags
IntroductionThe Grid Tag is provided by the jQuery Grid Plugin. For custom locals use the Head Tag SamplesMake a Grid editableFormat Grid ColumnsSearch GridGrid with Subgrid Add Navigato转载 2012-06-06 14:37:27 · 4134 阅读 · 1 评论 -
jqGrid的标题行搜索Toolbar Searching,filterToolbar
Toolbar SearchingThis method construct searching creating input elements just below the header elements of the grid. When the header elements are re sized the input search elements are also re siz转载 2013-06-02 22:11:04 · 6686 阅读 · 0 评论 -
JQGrid的数据格式JSON
动态加载JQGrid数据时, 一般使用xml或json格式,这2种格式的默认如下:XML数据:jQuery("#gridid").jqGrid({... xmlReader : {root: "rows",row: "row",page: "rows>page",total: "rows>total",records : "rows>records",r原创 2012-03-20 22:49:32 · 2192 阅读 · 0 评论 -
Jquery主要控件(textbox,button,lable,radio,checkbox,selected)的取值、赋值
textbox:var str = $('#txt').val(); $('#txt').val("Set Lbl Value"); //文本框,文本区域:$("#text_id").attr("value",'');//清空内容$("#text_id").attr("value",'test');//填充内容 lable: var str = $('#l转载 2012-03-21 14:24:35 · 736 阅读 · 0 评论 -
jqGrid的ColModel属性说明
参考文章: http://www.trirand.com/jqgridwiki/doku.php?id=wiki:colmodel_optionsColModel是jqGrid里面最核心的属性。大部分配置都在这里面进行。所有的属性的含义对应如下:PropertyTypeDescriptionDefaultalign转载 2011-12-10 16:03:26 · 16417 阅读 · 0 评论 -
jqGrid常用属性说明
文章参考: http://www.trirand.com/jqgridwiki/doku.php http://www.trirand.com/jqgridwiki/doku.php?id=wiki:options在$("#tableId").jqGrid(optional)中,optional对象包含如下的属性:(属性按字母顺序排列)转载 2011-12-10 16:15:47 · 858 阅读 · 0 评论 -
jqGrid定制显示时间格式
使用grid.locale-zh_CN.js时,要配置srcformatcol增加配置formatter:'date', formatoptions:{srcformat: 'Y-m-d H:i:s', newformat: 'Y-m-d H:i:s'}例如: colNames:['ID','类型','排序','备注','修改时间'], colModel:[ {name原创 2012-03-03 12:39:40 · 2993 阅读 · 0 评论 -
jQuery基础教程笔记
jQuery是目前使用最广泛的javascript函数库。据统计,全世界排名前100万的网站,有46%使用jQuery,远远超过其他库。微软公司甚至把jQuery作为他们的官方库。对于网页开发者来说,学会jQuery是必要的。因为它让你了解业界最通用的技术,为将来学习更高级的库打下基础,并且确实可以很轻松地做出许多复杂的效果。虽然jQuery上手简单,比其他库容易学会,但是要全面掌握,转载 2012-02-20 23:41:42 · 527 阅读 · 0 评论 -
There is no result type defined for type 'json' mapped with name 'success'.
在应用jquery的jqgrid时,需要用到json,已经加入json-lib-2.1-jdk15.jar,但启动tomcat时总报错,还是出现标题所示的错误:There is no result type defined for type 'json' mapped with name 'success'. 最后发现加入struts2-json-plugin-2.2.3.1.jar原创 2012-02-24 12:12:23 · 1274 阅读 · 0 评论 -
将URL中的UTF-8字符串转成中文字符串
包含utf-8的表单数据,var form=$("#Form1");var formData=form.serialize();将formData作为url字符串,在前台js处理时,要把utf-8转换为中文,可调用如下函数://将URL中的UTF-8字符串转成中文字符串 function getCharFromUtf8(str) { var cstr = "";原创 2014-02-10 15:43:47 · 1932 阅读 · 0 评论