bug fixed
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@ -110,6 +110,11 @@
|
|||||||
url: ext.contextPath +"/activiti/workflow/getProcessTypes4Combo.do",
|
url: ext.contextPath +"/activiti/workflow/getProcessTypes4Combo.do",
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
delay: 250,
|
delay: 250,
|
||||||
|
data: function (params) {
|
||||||
|
return {
|
||||||
|
term: params.term
|
||||||
|
};
|
||||||
|
},
|
||||||
processResults: function (data) {
|
processResults: function (data) {
|
||||||
return {
|
return {
|
||||||
results: data
|
results: data
|
||||||
@ -123,8 +128,8 @@
|
|||||||
language: "zh-CN",
|
language: "zh-CN",
|
||||||
minimumInputLength: 0,
|
minimumInputLength: 0,
|
||||||
minimumResultsForSearch: 10,
|
minimumResultsForSearch: 10,
|
||||||
formatResult: function formatRepo(repo){return repo.text;},
|
templateResult: function formatRepo(repo){return repo.text;},
|
||||||
formatSelection: function formatRepoSelection(repo){return repo.text;}
|
templateSelection: function formatRepoSelection(repo){return repo.text;}
|
||||||
});
|
});
|
||||||
fixSelect2ToTool("search_processType");
|
fixSelect2ToTool("search_processType");
|
||||||
$("#table").bootstrapTable({
|
$("#table").bootstrapTable({
|
||||||
|
|||||||
@ -17,17 +17,11 @@ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD
|
|||||||
display: flex;
|
display: flex;
|
||||||
padding-left: 50px;
|
padding-left: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*.layout{*/
|
|
||||||
/ display: flex;*/
|
|
||||||
/ padding-left: 15px;*/
|
|
||||||
/*}*/
|
|
||||||
.form-horizontal {
|
.form-horizontal {
|
||||||
padding-top: 20px;
|
padding-top: 20px;
|
||||||
padding-left: 60px;
|
padding-left: 60px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.right {
|
.right {
|
||||||
margin-left: 50px;
|
margin-left: 50px;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -50,10 +50,10 @@ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD
|
|||||||
formatResult: function formatRepo(repo) {
|
formatResult: function formatRepo(repo) {
|
||||||
return repo.text;
|
return repo.text;
|
||||||
}, // 函数用来渲染结果
|
}, // 函数用来渲染结果
|
||||||
|
formatSelection: function formatRepoSelection(repo) {
|
||||||
return repo.text;
|
return repo.text;
|
||||||
} // 函数用于呈现当前的选择
|
} // 函数用于呈现当前的选择
|
||||||
});
|
});
|
||||||
});
|
|
||||||
$(".select2-selection--single").css({'height': '30px', 'paddingTop': '4px'});
|
$(".select2-selection--single").css({'height': '30px', 'paddingTop': '4px'});
|
||||||
|
|
||||||
select_3.val('${bean.educationType}').trigger("change");
|
select_3.val('${bean.educationType}').trigger("change");
|
||||||
|
|||||||
Reference in New Issue
Block a user