드롭다운 상자의 - 동적 데이터 가져오기
adduser.securityDegree1=null;
adduser.securityDegree = new Ext.form.ComboBox( {
store : new Ext.data.Store( {
proxy : new Ext.data.HttpProxy( {
url : '../JSON/groups_GroupsRemote.getSecurityDegree'
}),
reader : new Ext.data.JsonReader( {
totalProperty : 'totalProperty',
root : 'root'
}, [ {
name : 'id'
}, {
name : 'name'
} ])
}),
fieldLabel : " "',
hiddenName : 'securityDegree',
valueField : "id",
displayField : "name",
mode : 'remote',
allowBlank : true,
disabled : false,
forceSelection : true,
editable : false,
triggerAction : 'all',
emptyText : *...,
labelStyle : 'padding:5px 0px 5px 0px',
listeners : {
select : function(combo, record, index) {
adduser.securityDegree1 = record.get('id');
},
beforequery : function(qe) {
delete qe.combo.lastQuery;
}
},
style : 'margin-bottom: 5px;',
width : 175
});
JSONArray JSONObject :
JSONObject obj = null;
JSONArray ary = new JSONArray();
for(Grops g:list){
obj = new JSONObject();
obj.put("id",g.getItemID());
obj.put("name",g.getItemName());
ary.add(obj);
}
obj = new JSONObject();
obj.put(”totalProperty",ary.size());
obj.put("root",ary);
return obj.toString();
obj.put("tatalProperty",ary.size());
obj.put("root",ary);
{
xtype : 'combo',
anchor : "90%",
store : new Ext.data.Store({
proxy : new Ext.data.HttpProxy({
url : '../JSON/maintenance_deptype_deptypeService.getDeptypeName'
}),
reader : new Ext.data.JsonReader({
totalProperty : 'totalProperty',
root : 'results'
}, [{
name : 'typename'
}, {
name : 'deptypeid'
}]),
baseParams : {
deptypeid : kind
}
}),
valueField : "deptypeid",
displayField : "typename",
mode : 'remote',
forceSelection : true,
hiddenName : 'kind',
editable : false,
triggerAction : 'all',
fieldLabel : '' + getResource('resourceParam686') + '',
blankText : '' + getResource('resourceParam683') + '',
name : 'kind',
emptyText : '' + getResource('resourceParam684') + '',
allowBlank : false
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
콘텐츠 SaaS | JSON 스키마 양식 빌더Bloomreach Content를 위한 JSON Form Builder 맞춤형 통합을 개발합니다. 최근 Bloomreach Content SaaS는 내장 앱 프레임워크를 사용하여 혁신적인 콘텐츠 유형 필드를 구축할...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.