摘要: <input class="easyui-combobox" id="s_dataDicName" data-options="panelHeight:'auto',editable:false,valueField:'dataDicName',textField:'dataDicName',url 阅读全文
posted @ 2016-02-17 22:27 DMC_HZP 阅读(152) 评论(0) 推荐(0) 编辑
摘要: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2016-02-17 17:34 DMC_HZP 阅读(144) 评论(0) 推荐(0) 编辑
摘要: ①:applicationContext(接口)就是IOC容器,classPathXmlApplication是applicationContext的实现类,该实现类从类路径下加载配置文件 ②: 1.可以利用Id定位到到IOC容器的bean getBean("helloworld") 2.利用类型返 阅读全文
posted @ 2016-02-17 17:18 DMC_HZP 阅读(121) 评论(0) 推荐(0) 编辑
摘要: ①:@RequestMapping("/helloworld")、@RequestMapping(value="/emp", method=RequestMethod.GET) 写在类上可用于区分模块 写在方法上可指定请求的方法 带method=RequestMethod.GET:可以指定请求的方法 阅读全文
posted @ 2016-02-17 16:58 DMC_HZP 阅读(199) 评论(0) 推荐(0) 编辑
摘要: ①springMVC必备jar包: commons-logging-1.1.3.jar spring-aop-4.0.0.RELEASE.jar spring-beans-4.0.0.RELEASE.jar spring-context-4.0.0.RELEASE.jar spring-core-4 阅读全文
posted @ 2016-02-17 15:59 DMC_HZP 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1. $("#dg").datagrid("load",{ "userName":$("#s_userName").val() }); 数据表的load方法,用于加载数据,后面可以写上参数,格式为:{"参数名":参数值,"":""}中间用逗号分开 2.$("#dlg").dialog("open") 阅读全文
posted @ 2016-02-17 15:32 DMC_HZP 阅读(298) 评论(0) 推荐(0) 编辑
摘要: ①table: 1.class="easyui-datagrid":指定为easyUI的表格布局 2.pagination="true":带分页的表格 3.rownumbers="true":表格带行号 4.toolbar="#tb":指定工具条,可以设定一个div布局为工具条 5.fit="tru 阅读全文
posted @ 2016-02-17 15:20 DMC_HZP 阅读(280) 评论(0) 推荐(0) 编辑