extjs form isvalid 버그
질문:
Form에 girdEditor를 끼워 넣으면 grid를 편집한 적이 있으면 Form의 isDirty ()는 영원히 ture입니다.
Form 코드:
Ext.define("Soims.view.application.SampleInfoForm", {
    extend: 'Ext.form.Panel',
    alias: 'widget.sampleinfoform',
    title: '    ',
    initComponent: function () {
        this.items = [{
            xtype: 'fieldset',
            layout: 'column',
            items: [{
                // ...   
            }]
            }]
        }, {
            xtype: 'fieldset',
            collapsible: false,
            frame: true,
            items: [{
                xtype: 'anlysetestprojectgrid' // Form   grid
            }]
        }, {
            xtype: 'hiddenfield',
            name: 'id'
        }];
        this.callParent(arguments);
    }
});  Grid 코드:
Ext.define("Soims.view.application.AnlyseTestProjectGrid", {
    extend: 'Ext.grid.Panel',
    alias: 'widget.anlysetestprojectgrid',
    plugins: [Ext.create('Ext.grid.plugin.CellEditing', { clicksToEdit: 1 })],
    closable: false,
    initComponent: function () {
        this.columns = [
            {
                header: '       ',
                dataIndex: 'intendCommitTestData',
                flex: 1,
                editor: { //   
                    allowBlank: false
                }
            }];
        this.callParent();
    }
});  이것은 ext4.2.1 버그 1개
구체적인 견해http://www.sencha.com/forum/archive/index.php/t-279876.html?s=8633abd6266531666ee4c2be06a16f1a
전재 대상:https://blog.51cto.com/wangyuelucky/1430029
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.