mvc+easyui源码_easyui 源码

hacker|
105

文章目录:

如何用easyui-datagrid+mvc实现自动加载表头及数据

$('#tt1').datagrid({

    nowrap: true,//设置为true,当数据长度超出列宽时将会自动截取。

    striped: true,//显示条纹

    loadMsg:'正在加载数据.......',//当从远程站点载入数据时,显示的一条快捷信息

    rownumbers:true,//设置为true将显示行数

    

,

    singleSelect: true

    }); 

    

    table data-options="fit:true,border:false" id="tt" style="width: auto;" 

   thead

     tr

      th data-options="field:'tsxmbm'"  width="80" align="left" 

       编码

      /th

      th data-options="field:'tsxmmc'"  width="140" align="left" 

       名称

      /th

     /tr

    /thead

  /table

最上面是加载datagrid的js  下面的table部分是要显示的表头“编码”,“名称” field里面是从后台传回来的json对象对应的字段名

mvc easyui datagrid 查询怎么做啊,

//查询

function q_dlg() {

var name = document.getElementById("personnelName").value;

var v = document.getElementById("searchStatus").value;

var f = name + ',' + v;

filter = f;

$('#dg').datagrid({

url: 'List1',

pageNumber: 1,

pageSize: 20,

pageList: [20, 40, 60, 80, 100],

queryParams: { filter: f },

rowStyler: function (index, row) {

//获取当前日期:

var myDate = new Date();

var year = myDate.getFullYear();

var month = myDate.getMonth() + 1;

var date = myDate.getDate();

var localdays = year + "-" + month + "-" + date;

newDate = new Date(localdays.replace(/-/g, "/"));

if (row.StatusName == "停用") {

return 'color:red;';

}

return 'cursor:pointer'

},

onDblClickRow: function (rowIndex, rowData) {

v_dlg();

},

onSortColumn: function (sort, order) {

$('#dg').datagrid("reload", { filter: filter, fieldtype: sort, desc: order });

}

});

}

easyui + SpringMvc 上传excel到服务器,然后解析插入mysql数据库

直接把#换成“?”即可,表示当前的页面,如果有其他参数应该写成“?id=...”

用javascript 创建easyui datagrid 后台代码怎么写?

后台返回 datagrid_data.json ;

给个spring mvc 的例子供参考:

package zjgs.eai.controller;

import org.apache.commons.logging.Log;

import org.apache.commons.logging.LogFactory;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.stereotype.Controller;

import org.springframework.ui.ModelMap;

import org.springframework.web.bind.annotation.ModelAttribute;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestMethod;

import zjgs.comm.PageForDataGrid;

import zjgs.eai.command.QuerySpErrorCommand;

import zjgs.eai.service.EaiService;

import javax.servlet.http.HttpServletRequest;

@Controller

public class QuerySpErrorController {

protected final Log logger = LogFactory.getLog(getClass());

@Autowired

private EaiService eaiService;

public EaiService getEaiService() {

return eaiService;

}

//初始化 JSP 页面

@RequestMapping(value = "/eai/querySpError.htm", method = RequestMethod.GET)

public String initPage(HttpServletRequest request) {

request.setAttribute("querySpErrorCommand", new QuerySpErrorCommand());

return "eai/querySpError";

}

//查询---返回对应的信息

@RequestMapping(value = "/eai/querySpSpxxByNsrsbh.json", method = RequestMethod.POST)

public String getDataSetSpxx(@ModelAttribute("pojo") QuerySpErrorCommand querySpErrorCommand, ModelMap modelMap) {

PageForDataGrid pageForDataGrid = new PageForDataGrid(

this.getEaiService().getSpxxByXtsphm(querySpErrorCommand.getXtsphm()),

1,

100,

modelMap

);

pageForDataGrid.setDataGrid();

return "querySpSpxxByXtsphm.json";

}

//查询---返回数据逻辑错误的日志信息

@RequestMapping(value = "/eai/querySpError.json", method = RequestMethod.POST)

public String getDataSetErrorLog(@ModelAttribute("pojo") QuerySpErrorCommand querySpErrorCommand, ModelMap modelMap) {

PageForDataGrid pageForDataGrid = new PageForDataGrid(

this.getEaiService().getErrorLogByXtsphm(querySpErrorCommand.getXtsphm()),

1,

100,

modelMap

);

pageForDataGrid.setDataGrid();

return "querySpError.json";

}

}

c# mvc4 中的 easyui使用问题,我在VIEW中明明引用了相关js文件,但运行说不支持某方法。

你的脚本引用有问题,包括CSS

src="~/...." 这个是服务器端的写法,你得让服务器解析,客户端不认这个标记

改成

script src=% 解析后的完整路径 %

4条大神的评论

  • avatar
    访客 2022-07-13 下午 08:43:36

    delMap modelMap) { PageForDataGrid pageForDataGrid = new PageForDataGrid( this.getEaiService().getS

  • avatar
    访客 2022-07-14 上午 01:23:45

    true,当数据长度超出列宽时将会自动截取。    striped: true,//显示条纹    loadMsg:'正在加载数据.......',//当从远程站点载入数据时,显示的一条快捷

  • avatar
    访客 2022-07-14 上午 04:56:36

    ethod.POST) public String getDataSetErrorLog(@ModelAttribute("pojo") QuerySpErrorCommand querySpErrorCommand, ModelM

  • avatar
    访客 2022-07-14 上午 12:49:11

    ype.Controller;import org.springframework.ui.ModelMap;import org.springframework.we

发表评论