04 2018 档案

摘要:前台方法: var senddata = { SiteGroupID: nodeId }; $.ajax({ type: "Post",//这里是http类型 //contentType:"application/json",//这里设置发往服务端的数据类型 url: "CheckSiteGroup 阅读全文
posted @ 2018-04-25 13:56 飞刀软件 阅读(140) 评论(0) 推荐(0)
摘要:var RewardLevelIds = ""; $("input:checkbox:checked").each(function (i) { var name = $(this).attr("name"); var id = name.substring(name.indexOf("_") + 阅读全文
posted @ 2018-04-18 10:13 飞刀软件 阅读(2180) 评论(0) 推荐(0)
摘要:string 转成 list,可直接通过list的构造函数转换 案例: var RewardLevelIdList = new List<string>(search.RewardLevelIds.Split(',')); 阅读全文
posted @ 2018-04-13 15:50 飞刀软件 阅读(1156) 评论(0) 推荐(0)
摘要:取消选中使用clearSelection()函数,案例如下: var selectIndex = 0; $(function () { $("#ComplaintRegistrationListGrid").on('click', '.k-selectable tr', function () { 阅读全文
posted @ 2018-04-10 14:55 飞刀软件 阅读(472) 评论(0) 推荐(0)
摘要:案例: cols.Bound(m => m.Name).TextAlignCenter().Sortable(false).Format("{0: yyyy-MM-dd HH:mm}"); 阅读全文
posted @ 2018-04-02 10:03 飞刀软件 阅读(404) 评论(0) 推荐(0)