Hello everyOne!
1. isc_version=SNAPSHOT_v9.1d_2013-12-04.js
2. browser: IE8
I want to use javascript's ime-mode to dynamicForm's fields.
How can i do it?
var inputForm = isc.DynamicForm.create({
width:"100%",
height: "*",
cellPadding:0,
cellBorder:0,
numCols:6,
border: "1px solid gray",
fields:[
{name:"MENU_SEQ", title: "메뉴코드", editorType:"text",editorProperties : { disabled:true },length:"10" },
{name:"UPPER_MENU_SEQ", title: "상위코드", editorType:"text",editorProperties : { width:"100%" ,disabled:true},length:"10"},
{name:"USE_AT", title: "사용여부" ,editorType: "radioGroup", displayField:"LABEL", valueField:"VALUE",editorProperties : { vertical:false } ,valueMap: {"Y":"예","N":"아니오"}},
{name:"MENU_NM",title: "메뉴명(한글)", colSpan:"3" ,editorType:"text",editorProperties : { width:"100%" },length:"100"},
{name:"MSSAGE_USE_AT",title: "쪽지사용",editorType: "radioGroup",editorProperties : { vertical:false } ,valueMap: {"Y":"예","N":"아니오"}},
{name:"MENU_NM_EN",title: "메뉴명(영어)", colSpan:"3",editorType:"text",editorProperties : { width:"100%" },length:"100"},
{name:"SMS_USE_AT",title: "SMS사용" ,editorType: "radioGroup",editorProperties : { vertical:false } ,valueMap: {"Y":"예","N":"아니오"}},
{name:"MENU_NM_CH",title: "메뉴명(중국)", colSpan:"3",editorType:"text",editorProperties : { width:"100%" },length:"100"},
{name:"EMAIL_USE_AT",title: "이메일사용",editorType: "radioGroup",editorProperties : { vertical:false } ,valueMap: {"Y":"예","N":"아니오"}},
{name:"MENU_NM_JP",title: "메뉴명(일본)", colSpan:"3",editorType:"text",editorProperties : { width:"100%" },length:"100"},
{name:"PARAMTR",title: "파라미터",editorType:"text",length:"300"},
{name:"MENU_URL",title: "메뉴URL", colSpan:"3",editorType:"text",editorProperties : { width:"100%" },length:"300"},
{name:"SORT_ORDR",title: "정렬순서",editorType:"text",length:"6"},
{name:"HPCM_URL",title: "도움말URL", colSpan:"3",editorType:"text",editorProperties : { width:"100%" },length:"200"},
{name:"MNGR",title: "관리자",editorType:"text",length:"30"},
{name:"PROCS_ID", title: "프로세스ID", editorType:"text",length:"20"},
{name:"REGLTN_ID", title: "규정ID", editorType:"text",editorProperties : { width:"100%" },length:"10"},
{name:"MNSG_DEPT", title: "주사용부서" ,editorType:"text",length:"100"},
{name:"PROGRM_SPORT_SKLL", title: "지원기능", editorType:"text",length:"30"},
{name:"MULTI_CHECKBOX", title: "처리구분", editorType:"multiCheckBox", colSpan:"3",editorProperties : { vertical:false } ,valueMap: ["예", "아니오"]},
{name:"MENU_DETAIL_DC", title: "상세설명", editorType:"text", colSpan:"5",editorProperties : { width:"100%" },length:"300"},
{name:"RM", title: "비고", type:"text", colSpan:"5",editorType:"text",editorProperties : { width:"100%" },length:"2000"},
],
// Function to actually find items
findItems : function (categoryName) {
},
itemChange: function (item,newValue,oldValue){
module.formItemChange(item,newValue,oldValue);
}
});