I am having trouble displaying an Ext JS component within a simple div. I know it should happen through renderTo, but when I try to assign the id of the div in the Ext JS code, it doesn't work.
For more details and code examples, click on the following link: https://jsfiddle.net/m10v973y/
<div id="bla"></div>
Ext.define('KitchenSink.view.form.FieldTypes', {
extend: 'Ext.form.Panel',
xtype: 'form-fieldtypes',
renderTo:"bla",
frame: true,
title: 'Form Fields',
width: 400,
bodyPadding: 10,
layout: 'form',
// Include various form fields here
});