송수신 파일 목록 상세에서 Application Code를 selectbox 로수정
This commit is contained in:
@@ -90,6 +90,21 @@ function init(url,key){
|
||||
//new makeOptions("CODE","NAME").setObj($("select[name=bizlevel2]")).setNoValueInclude(true).setNoValue(' ','없음').setData(json.bizlevel2).rendering();
|
||||
//setSearchable('bjobBzwkDstcd');
|
||||
//setSearchable('uapplCd');
|
||||
|
||||
$.ajax({
|
||||
type : "POST",
|
||||
url:url,
|
||||
dataType:"json",
|
||||
data:{ cmd: 'LIST_UAPPL_COMBO'},
|
||||
success:function(json){
|
||||
new makeOptions("CODE","NAME").setObj($("select[name=uapplCd]")).setNoValueInclude(true).setNoValue(' ','없음').setData(json.uapplCd).rendering();
|
||||
setSearchable('uapplCd');
|
||||
},
|
||||
error:function(e){
|
||||
// alert(e.responseText);
|
||||
}
|
||||
});
|
||||
|
||||
debugger;
|
||||
if ( isDetail ){
|
||||
detail(url, key);
|
||||
@@ -326,8 +341,8 @@ $(document).ready(function() {
|
||||
<tr>
|
||||
<th>APPLICATION CODE</th>
|
||||
<td>
|
||||
<!-- <div class="select-style"><select name="uapplCd"></select></div> -->
|
||||
<input type="text" name="uapplCd" />
|
||||
<div class="select-style"><select name="uapplCd"></select></div>
|
||||
<!-- <input type="text" name="uapplCd" /> -->
|
||||
</td>
|
||||
</tr>
|
||||
<!--
|
||||
|
||||
+14
-1
@@ -156,7 +156,20 @@ public class BapMessageProcController extends BapBaseAnnotationController {
|
||||
ModelAndView modelAndView = new ModelAndView("jsonView",resultMap);
|
||||
return modelAndView;
|
||||
}
|
||||
|
||||
|
||||
@RequestMapping(value= "/bap/admin/work/messageProcMan.json",params = "cmd=LIST_UAPPL_COMBO")
|
||||
public ModelAndView initUapplCdCombo( HttpServletRequest request,
|
||||
HttpServletResponse response) throws Exception {
|
||||
|
||||
List<Map<String, Object>> uapplCd = comboService.selectCM01ComboList("TRIM(EAIBZWKDSTCD)", "BZWKDSTICNAME");
|
||||
Map<String, Object> resultMap = new HashMap<String, Object>();
|
||||
|
||||
resultMap.put("uapplCd" , uapplCd);
|
||||
|
||||
ModelAndView modelAndView = new ModelAndView("jsonView",resultMap);
|
||||
return modelAndView;
|
||||
}
|
||||
|
||||
@RequestMapping(value= "/bap/admin/work/messageProcMan.json",params = "cmd=LIST_PROP")
|
||||
public ModelAndView getProps( HttpServletRequest request,
|
||||
HttpServletResponse response,
|
||||
|
||||
Reference in New Issue
Block a user