php easyui filebox,easyui fileBox 获取文件名和添加下拉框
gistfile1.txt
var fileFlag = $('#file').filebox('getValue')
var index = fileFlag .lastIndexOf("\.");
fileFlag = fileFlag .substring(index + 1, fileFlag .length);
//easyeasyui 下拉框下拉框
//通知人員下拉框
$('#users').combobox({
url:'${ctx}/notice/getUserList',
method:'post',
valueField:'id',
textField:'name',
sortName:'name',
panelHeight:'180',
multiple:true,
formatter: function (row) {
var opts = $(this).combobox('options');
return '' + row[opts.textField]
},
onShowPanel: function () {
var opts = $(this).combobox('options');
var target = this;
var values = $(target).combobox('getValues');
$.map(values, function (value) {
var el = opts.finder.getEl(target, value);
el.find('input.combobox-checkbox')._propAttr('checked', true);
})
},
onLoadSuccess: function () {
var opts = $(this).combobox('options');
var target = this;
var values = $(target).combobox('getValues');
$.map(values, function (value) {
var el = opts.finder.getEl(target, value);
el.find('input.combobox-checkbox')._propAttr('checked', true);
})
},
onSelect: function (row) {
//console.log(row);
var opts = $(this).combobox('options');
var el = opts.finder.getEl(this, row[opts.valueField]);
el.find('input.combobox-checkbox')._propAttr('checked', true);
},
onUnselect: function (row) {
var opts = $(this).combobox('options');
var el = opts.finder.getEl(this, row[opts.valueField]);
el.find('input.combobox-checkbox')._propAttr('checked', false);
}
});
總結(jié)
以上是生活随笔為你收集整理的php easyui filebox,easyui fileBox 获取文件名和添加下拉框的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 论文笔记:基于特征选择与增量学习的非侵入
- 下一篇: idea启动慢