Ext의 TriggerField 문제

4406 단어 ext

Ext.form.ShiftDefRefField = Ext.extend(Ext.form.TriggerField, {

    triggerClass: 'x-form-ref-trigger',
    initComponent: function() {
        Ext.form.ComboBox.superclass.initComponent.call(this);
        this.ds = new Ext.data.Store({
            proxy: new Ext.data.HttpProxy({ url: 'GetSomeShiftDefRef', method: 'GET' }),
            reader: new Ext.data.JsonReader({ totalProperty: 'totalProperty', root: 'root', id: 'id' },
                [{ name: 'ID' }, { name: 'Code' }, { name: 'Name' }, { name: 'Description' }, { name: 'ShiftType'}])
        });
        this.ButtonOK = new Ext.Button({ id: 'RefButtonOK', text: 'OK', tooltip: 'OK', iconCls: 'add' });
        this.sm = new Ext.grid.CheckboxSelectionModel();
        this.cm = new Ext.grid.ColumnModel([
            this.sm,
            { header: 'Code', width: 100, dataIndex: 'Code', sortable: true },
            { header: 'Name', width: 100, dataIndex: 'Name', sortable: true },
            { header: 'Description', width: 100, dataIndex: 'Description', sortable: true },
            { header: 'ShiftType', width: 100, dataIndex: 'ShiftType', sortable: true}]);
        this.gridMain = new Ext.grid.GridPanel({
            store: this.ds,
            cm: this.cm,
            sm: this.sm,
            stripeRows: true,
            height: 300,
            width: 500,
            loadMask: true,
            bbar: new Ext.PagingToolbar({
                pageSize: 20,
                store: this.ds,
                displayInfo: true,
                displayMsg: 'From {0} to {1} , total: {2}',
                emptyMsg: "No record"
            }),

            tbar: new Ext.Toolbar({
                items: [this.ButtonOK]
            })
        });
        this.windowRef = new Ext.Window({
            layout: 'fit',
            modal: true,
            height: 300,
            width: 500,
            title: 'Select',
            closeAction: 'hide',
            plain: true,
            items: this.gridMain
        });
        this.ButtonOK.on('click', this.ButtonOK_Click, this, { preventDefault: true });
    },

    ButtonOK_Click: function() {
        var selectedItems = this.gridMain.selModel.selections.keys;
        if (selectedItems.length == 0) {
            Ext.MessageBox.alert('Error', 'Please select on record!');
        }
        else {
            var selectedRow = this.gridMain.getSelectionModel().getSelected();
            this.windowRef.hide();
            // this.setValue(selectedRow.get('Code'));
            var text = selectedRow.get('Code');
            Ext.form.ShiftDefRefField.superclass.setValue.call(this, text);
        }
    },
    onTriggerClick: function() {
        this.ds.load({ params: { start: 0, limit: 20} });
        this.windowRef.show();
    }
});


이것은 그 컨트롤의 코드이다
{ header: "ShiftDef", width: 100, dataIndex: 'ShiftDef', sortable: true, editor: ShiftDefRef }
컨트롤을 사용하는 EditorGrid 열
-------------------------------------------------------------
------------------------------------------------------------------
조금 더 설명하자면:
이 확장 컨트롤러는 initComponent에서 1Grid를 만들었습니다
this.ButtonOK.on('click', this.ButtonOK_Click, this, { preventDefault: true });
Grid의 Button에 이벤트 처리 추가
그리고 Button OK_Click에서 Windows를 닫고 ID를 반환합니다.
하지만 이 방법:
            var selectedRow = this.gridMain.getSelectionModel().getSelected();
            this.windowRef.hide();
           //this.setValue(selectedRow.get('Code'));
            var text = selectedRow.get('Code');
            Ext.form.ShiftDefRefField.superclass.setValue.call(this, text);
윈도우도 닫혔고, 코드의 값도 얻었습니다.
바로 이것입니다.setValue() 메서드가 작동하지 않음(IE7에서 가끔 작동)
-------------

좋은 웹페이지 즐겨찾기