Ext htmleditor 구성 요소 문제

1351 단어 exthtmleditor
저장을 클릭한 후 FormPanel을 다시 꺼내면 커서가 편집 영역으로 이동할 수 없습니다. 높은 사람에게 알려주시겠습니까?액세서리는 효과도이다
//창의 Form

var articleForm = new Ext.form.FormPanel( {
	frame : true,
	// height:1030,
	// layout:{type:'absolute'},
	region : 'center',
	labelAlign : 'right',
	buttonAlign : 'center',
	// autoDestroy:true,
	labelWidth : 55,
	items : [{
		xtype : 'htmleditor',
		name: 'editDocContent',
		height : 200,
		anchor : '98%'
	}],
	buttons : [ {
		xtype : 'button',
		text : ' ',
		handler : function() {
			if(articleForm.form.isValid() == true){
				articleForm.form.submit({
					url: 'document/documentCreate.action',
					success: function(form, action){
						articleFormShow.hide();
						Ext.Msg.alert(" ", action.result.msgBack);		
						articleGrid.load("document/documentSearch.action","articleList", 30, fieldsAll);
					},
					failure : function() {
						Ext.Msg.alert(' ', ' !');
					},
					waitMsg : ' , ...'
				});
			}
		}
	}, {
		xtype : 'button',
		text : ' '
	} ]
});

좋은 웹페이지 즐겨찾기