içinde Ext.application oluşturma Varolan web sitesi şablonumuzda bir ExtJS4 Ext.application
çalıştırmaya çalışıyorum. Uygulamayı geliştirilmek üzere yerleştirmek istediğimiz bir div #content
var. Mevcut html sayfasını değiştirmek yerine uygulamayı bu alana nasıl uygularım?Bir divanda
Ext.application({
name: 'HelloExt',
launch: function() {
Ext.create('Ext.container.Viewport', {
layout: 'fit',
// renderTo: Ext.Element.get('#content') doesn't work
items: [
{
title: 'Hello Ext',
html : 'Hello! Welcome to Ext JS.'
}
]
});
}
});
Gerçekten emin değilim, yorum lütfen
Ext.panel.Panel
kullanın. – Reimius