Yes, absolutely. You can include the ExtJS library on your page, just like jQuery, and do all kinds of things - manipulate the DOM, add / remove HTML elements on your page, insert ExtJS components anywhere in your markup, etc.
For example, if you have an element with the identifier "my-ext-widget", you can create an ext component (for example, a panel) and insert it into this element, for example:
Ext.onReady(function() {
myPanel = new Ext.Panel({
title:'Sample Panel',
height:300,
width:200,
html:'This is a sample panel'
});
myPanel.render("my-ext-widget");
});
What exactly are you trying to do?
source
share