
kendo-ui
孤城冰
坚持别人不能坚持的,努力别人不能付出的,就会收获别人不能收获的。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
kendo-ui +jquery 页面关闭
window.opener = null;window.open('', '_self', '');window.close();页面弹出样式如图:之前查找过发现使用很多网上方法都不好用,不过上面的方法适合我的项目:var userAgent = navigator.userAgent;if (userAgent.indexOf("Firefox") != -1 || u...原创 2019-11-15 14:24:00 · 373 阅读 · 0 评论 -
kendo-ui+jquery 窗口弹出,及关闭
htmlpage<div id="uploadWin" style="width:500px;height:300px"> <div style="height:50px"> <table style="margin-top:20px;border-collapse:separate; border-spacing:0px...原创 2019-11-14 01:13:10 · 1221 阅读 · 0 评论 -
kendo-ui+jquery 写表格两种方法
前台页面// staffWage\orgExamForm\StaffWageOrgExamForm.html<!DOCTYPE html><html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compat...原创 2019-11-13 12:56:50 · 361 阅读 · 0 评论 -
kendo-ui 获取后台数据
1: dataSource: DataSourceFactory.createBaseFrontDefault('/api/staff/supplierPersonMoney/procPerMoneyDet?processInstId=' + processInstId + '&processResultCode=' + '审批'),2: let data: k...原创 2019-11-12 22:18:51 · 628 阅读 · 0 评论 -
kendo-ui+typeScript dataSourc 点击事件同时取值
const useOrgSource = DataSourceFactory.createBaseFrontNoRoot('/api/table/combolist/laborProj/labUseOrg'); useOrgSource.bind('change', (elem: kendo.data.Model) => { let laa = useOrgS...原创 2019-10-17 17:59:32 · 163 阅读 · 0 评论 -
handlebars+kendo ui 编辑grid单元格点击事件
.hbs page<form> <table> <tr> <td> <label style="display:inline-block;width:70px">项目年度&...原创 2019-10-12 15:08:11 · 473 阅读 · 0 评论 -
handlebars+kendo-ui grid单元格点击事件(二)
关于点击事件后弹出窗口,显示返回绑定数据://.hbs page<form> <label style="display:inline-block;width:70px">项目年度</label> <input style="width: :160px" data-role="dropdownlist" data-t...原创 2019-10-09 13:54:35 · 612 阅读 · 0 评论 -
handlebars+kendo-ui grid单元格点击事件(一)
<form> <label style="display:inline-block;width:70px">项目年度</label> <input style="width: :160px" data-role="dropdownlist" data-text-field="year" data-value-field="id" ...原创 2019-09-29 15:16:22 · 803 阅读 · 0 评论 -
kendo-ui grid单行取值问题
参考路径:https://codeday.me/bug/20181101/320043.html<div id="grid"></div> let grid = $('#grid').kendoGrid({ dataSource: dataSource, selectable: "multiple", ...原创 2019-09-27 16:54:30 · 828 阅读 · 0 评论