Extjs 구성 요소 개발 - combox

1790 단어 combox
////////////////////////////////////////////////////////////
//  : ComboBox
//  : 
////////////////////////////////////////////////////////////

Euroa.component.DicCombo=function(config)
{
    var temp='';
    var tempData=Euroa.util.PageManagerInstance.getAccesableDataDictionaryByCode(config.dataDictionaryCode);
    for(i=0;i<tempData.DictionaryValues.length;i++) 
    {
       temp+='['+"'"+tempData.DictionaryValues[i].DataDictionaryValueCode+"'"+','+"'"+tempData.DictionaryValues[i].DataDictionaryValue+"'"+']'+',';
    }
    temp = '[["-1",""],'+temp.substr(0,temp.length-1)+']';
    Euroa.component.DicCombo.superclass.constructor.call(this,Ext.apply(config,
    {
        store:new Ext.data.ArrayStore
        ({
              fields: ['Id', 'Value'], 
              data : Ext.util.JSON.decode(temp)
        }),
        valueField:'Id',
        displayField:'Value',
        typeAhead: true,
        mode: 'local',
        fieldLabel:config.fieldLabel ? config.fieldLabel : tempData.DataDictionaryName,
        forceSelection: false,
        triggerAction: 'all',
        selectOnFocus:true,
        editable:false,
        allowBlank:true
    }))
};

Ext.extend(Euroa.component.DicCombo, Ext.form.ComboBox);
Ext.reg('DicCombo', Euroa.component.DicCombo);

 

 
 
이 문서는 CSDN 블로그에서 왔으며, 전재하려면 출처를 명시하십시오.http://blog.csdn.net/mysouling/archive/2010/03/24/5410470.aspx

좋은 웹페이지 즐겨찾기